[pyflakes] Update to 3.3.2 (#13756)

This commit is contained in:
Brian Schubert
2025-04-01 02:32:00 -04:00
committed by GitHub
parent bfd032156c
commit 538bbadf8c
2 changed files with 3 additions and 2 deletions
+1 -1
View File
@@ -1,4 +1,4 @@
version = "3.3.*"
version = "~=3.3.2"
upstream_repository = "https://github.com/PyCQA/pyflakes"
partial_stub = true
+2 -1
View File
@@ -104,7 +104,8 @@ class ExportBinding(Binding):
class Scope(dict[str, Binding]):
importStarred: bool
class ClassScope(Scope): ...
class ClassScope(Scope):
def __init__(self) -> None: ...
class FunctionScope(Scope):
usesLocals: bool