Skip to content

Commit

Permalink
chore: do not require coverage for a compat import statement
Browse files Browse the repository at this point in the history
  • Loading branch information
vytas7 committed Nov 5, 2022
1 parent ca66ec5 commit 13571bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion falcon/asgi/response.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"""ASGI Response class."""
try:
from asyncio.coroutines import CoroWrapper # type: ignore
except ImportError:
except ImportError: # pragma: nocover
CoroWrapper = None # type: ignore
from inspect import iscoroutine
from inspect import iscoroutinefunction
Expand Down

0 comments on commit 13571bf

Please sign in to comment.