Skip to content

Commit

Permalink
typing: fix lazy imports
Browse files Browse the repository at this point in the history
  • Loading branch information
CaselIT committed Feb 17, 2024
1 parent 36d3a89 commit 9603925
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion falcon/testing/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -463,7 +463,7 @@ async def finalize(self):


_HeadersType = Union[None, Mapping[str, str], Iterable[Tuple[str, str]]]
_AnyApp = Union[WSGI, ASGI]
_AnyApp = Union['WSGI', 'ASGI']
_AnyResult = Union[Result, StreamedResult]


Expand Down

0 comments on commit 9603925

Please sign in to comment.