Skip to content

Commit 6936587

Browse files
committed
typing.Self requires Python 3.11, not 3.10
1 parent c43b6e4 commit 6936587

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/quart/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
from .typing import Event
2525
from .typing import FilePath
2626

27-
if sys.version_info >= (3, 10):
27+
if sys.version_info >= (3, 11):
2828
from typing import Self
2929
else:
3030
from typing_extensions import Self

0 commit comments

Comments
 (0)