Skip to content

Commit

Permalink
fix version problem
Browse files Browse the repository at this point in the history
  • Loading branch information
dev0Guy committed Feb 8, 2025
1 parent 1ace89b commit 58d4b04
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion nest/core/decorators/http_method.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
from typing import Callable, List, Union, TypeVar, ParamSpec, TypeAlias
from typing import Callable, List, Union, TypeVar, TypeAlias
from enum import Enum
import sys

if sys.version_info >= (3, 10):
from typing import ParamSpec
else:
from typing_extensions import ParamSpec


P = ParamSpec("P")
R = TypeVar("R")
Expand Down

0 comments on commit 58d4b04

Please sign in to comment.