Skip to content

Commit 538bbad

Browse files
[pyflakes] Update to 3.3.2 (#13756)
1 parent bfd0321 commit 538bbad

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

stubs/pyflakes/METADATA.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version = "3.3.*"
1+
version = "~=3.3.2"
22
upstream_repository = "https://github.com/PyCQA/pyflakes"
33
partial_stub = true
44

stubs/pyflakes/pyflakes/checker.pyi

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,8 @@ class ExportBinding(Binding):
104104
class Scope(dict[str, Binding]):
105105
importStarred: bool
106106

107-
class ClassScope(Scope): ...
107+
class ClassScope(Scope):
108+
def __init__(self) -> None: ...
108109

109110
class FunctionScope(Scope):
110111
usesLocals: bool

0 commit comments

Comments
 (0)