Skip to content

Commit

Permalink
pythongh-124889: Typo fix
Browse files Browse the repository at this point in the history
  • Loading branch information
efimov-mikhail committed Oct 21, 2024
1 parent 413cf8a commit c9b3693
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Tools/peg_generator/pegen/python_generator.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ def visit_Forced(self, node: Forced) -> bool:
class PythonCallMakerVisitor(GrammarVisitor):
def __init__(self, parser_generator: ParserGenerator):
self.gen = parser_generator
self.cache: Dict[str, str] = {}
self.cache: Dict[str, Tuple[str, str]] = {}

def visit_NameLeaf(self, node: NameLeaf) -> Tuple[Optional[str], str]:
name = node.value
Expand Down

0 comments on commit c9b3693

Please sign in to comment.