Add definition for visit_MatchSingleton to ast.NodeVisitor (#10758)

This commit is contained in:
plokmijnuhby
2023-09-24 16:26:17 +01:00
committed by GitHub
parent 0a92429627
commit b1d4f29ed4

View File

@@ -140,6 +140,7 @@ class NodeVisitor:
def visit_Match(self, node: Match) -> Any: ...
def visit_MatchValue(self, node: MatchValue) -> Any: ...
def visit_MatchSequence(self, node: MatchSequence) -> Any: ...
def visit_MatchSingleton(self, node: MatchSingleton) -> Any: ...
def visit_MatchStar(self, node: MatchStar) -> Any: ...
def visit_MatchMapping(self, node: MatchMapping) -> Any: ...
def visit_MatchClass(self, node: MatchClass) -> Any: ...