Skip to content

Commit

Permalink
refactor: remove support for python 3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
CaselIT committed Aug 20, 2024
1 parent 269155d commit 3ce8b64
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 9 deletions.
6 changes: 0 additions & 6 deletions falcon/_typing_extensions.py

This file was deleted.

2 changes: 1 addition & 1 deletion falcon/hooks.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,13 @@
cast,
Dict,
List,
Protocol,
Tuple,
TYPE_CHECKING,
TypeVar,
Union,
)

from falcon._typing_extensions import Protocol
from falcon.constants import COMBINED_METHODS
from falcon.util.misc import get_argnames
from falcon.util.sync import _wrap_non_coroutine_unsafe
Expand Down
3 changes: 1 addition & 2 deletions falcon/typing.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,12 @@
Dict,
List,
Pattern,
Protocol,
Tuple,
TYPE_CHECKING,
Union,
)

from falcon._typing_extensions import Protocol

if TYPE_CHECKING:
import falcon as wsgi
from falcon import asgi
Expand Down

0 comments on commit 3ce8b64

Please sign in to comment.