Skip to content

Commit bf6c2d6

Browse files
committed
fix ParamSpec import
1 parent e769c48 commit bf6c2d6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,4 +60,4 @@ jobs:
6060
echo "$(poetry env info --path)/bin" >> $GITHUB_PATH
6161
6262
- name: Run pyright
63-
uses: jakebailey/pyright-action@v2
63+
uses: jakebailey/pyright-action@v2

django_typer/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@
107107
)
108108
from .utils import _command_context, traceback_config, with_typehint
109109

110-
if sys.version_info < (3, 9):
110+
if sys.version_info < (3, 10):
111111
from typing_extensions import ParamSpec
112112
else:
113113
from typing import ParamSpec

0 commit comments

Comments
 (0)