Skip to content

Commit

Permalink
chore: fix pipelines fails
Browse files Browse the repository at this point in the history
  • Loading branch information
CaselIT committed Sep 27, 2024
1 parent 350d839 commit 2e5931a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions falcon/hooks.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@

try:
from typing import Concatenate, ParamSpec
except ImportError:
from typing_extensions import Concatenate # type: ignore[assignment]
except ImportError: # pragma: no cover
from typing_extensions import Concatenate
from typing_extensions import ParamSpec # type: ignore[assignment]

if TYPE_CHECKING:
Expand Down

0 comments on commit 2e5931a

Please sign in to comment.