Skip to content

Commit

Permalink
Fix coverage issues
Browse files Browse the repository at this point in the history
  • Loading branch information
copalco committed Nov 6, 2023
1 parent 95ede1b commit a0a481c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion falcon/hooks.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
from falcon.util.misc import get_argnames
from falcon.util.sync import _wrap_non_coroutine_unsafe

if t.TYPE_CHECKING:
if t.TYPE_CHECKING: # pragma: no cover
import falcon as wsgi
from falcon import asgi

Expand Down
2 changes: 1 addition & 1 deletion falcon/media/handlers.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
from falcon.util import misc
from falcon.vendor import mimeparse

if typing.TYPE_CHECKING:
if typing.TYPE_CHECKING: # pragma: no cover
from typing import Mapping
from falcon.typing import Serializer

Expand Down

0 comments on commit a0a481c

Please sign in to comment.