Skip to content

Commit

Permalink
fix typing issue
Browse files Browse the repository at this point in the history
  • Loading branch information
rambo committed Sep 14, 2024
1 parent 5f93462 commit 1728cc2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/multikeyjwt/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

def starlette_config_wrapper(
key: str,
default: typing.Optional[str] = None,
default: typing.Optional[typing.Any] = None,
cast: typing.Optional[typing.Callable[[typing.Any], typing.Any]] = None,
) -> typing.Any:
"""Wrap starlettes config to keep type-checking sane with the missing starlette -case"""
Expand Down

0 comments on commit 1728cc2

Please sign in to comment.