Skip to content

Commit

Permalink
remove debug code
Browse files Browse the repository at this point in the history
  • Loading branch information
apalala committed Dec 10, 2023
1 parent 8cefbae commit 8e3004c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tatsu/ngcodegen/objectmodel.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ def _gen_base_class(self, class_name: str, base: str | None):
self.print()
self.print('@dataclass(eq=False)')
if base:
self.print(f'class {class_name}({base}): # base')
self.print(f'class {class_name}({base}):')
else:
# FIXME: this cannot happen as base_type is the final base
self.print(f'class {class_name}:')
Expand Down

0 comments on commit 8e3004c

Please sign in to comment.