We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f73ae65 commit bbf45d8Copy full SHA for bbf45d8
1 file changed
stubs/pyflakes/pyflakes/checker.pyi
@@ -185,10 +185,10 @@ else:
185
_TypeVarTuple: TypeAlias = Never
186
_TypeAlias: TypeAlias = Never
187
188
-if sys.version_info < (3, 14): # noqa: Y066
189
- _NameConstant: TypeAlias = ast.NameConstant
190
-else:
+if sys.version_info >= (3, 14):
191
_NameConstant: TypeAlias = Never
+else:
+ _NameConstant: TypeAlias = ast.NameConstant
192
193
class Checker:
194
nodeDepth: int
0 commit comments