Skip to content

Commit

Permalink
fix mypy lints
Browse files Browse the repository at this point in the history
  • Loading branch information
tekumara committed Sep 4, 2024
1 parent ebcd61f commit c1b05dd
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion starlette/applications.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,8 @@ def __init__(
debug: bool = False,
routes: typing.Sequence[BaseRoute] | None = None,
middleware: typing.Sequence[Middleware] | None = None,
exception_handlers: typing.Mapping[typing.Any, typing.Callable] | None = None,
exception_handlers: typing.Mapping[typing.Any, typing.Callable[[typing.Any, typing.Any], typing.Any]]
| None = None,
on_startup: typing.Sequence[typing.Callable[[], typing.Any]] | None = None,
on_shutdown: typing.Sequence[typing.Callable[[], typing.Any]] | None = None,
lifespan: Lifespan[AppType] | None = None,
Expand Down

0 comments on commit c1b05dd

Please sign in to comment.