pyflakes: fix stubtest (#9273)

Fixes #9272
This commit is contained in:
Jelle Zijlstra
2022-11-25 00:34:37 -08:00
committed by GitHub
parent 8da1e8c31d
commit 59f35b51b2

View File

@@ -212,7 +212,7 @@ class Checker:
def differentForks(self, lnode: ast.AST, rnode: ast.AST) -> bool: ...
def addBinding(self, node: ast.AST, value: Binding) -> None: ...
def getNodeHandler(self, node_class: type[ast.AST]): ...
def handleNodeLoad(self, node: ast.AST) -> None: ...
def handleNodeLoad(self, node: ast.AST, parent: ast.AST) -> None: ...
def handleNodeStore(self, node: ast.AST) -> None: ...
def handleNodeDelete(self, node: ast.AST) -> None: ...
def handleChildren(self, tree: ast.AST, omit: _OmitType = ...) -> None: ...