Skip to content

Commit

Permalink
[codegen] hardcode comment re in generated parser
Browse files Browse the repository at this point in the history
  • Loading branch information
apalala committed Oct 13, 2023
1 parent a8455fb commit 33df2ca
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions tatsu/codegen/python.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,20 +5,20 @@

import textwrap

from tatsu.util import (
from ..util import (
indent,
safe_name,
trim,
timestamp,
compress_seq,
RETYPE
)
from tatsu import grammars
from tatsu.exceptions import CodegenError
from tatsu.objectmodel import Node
from tatsu.objectmodel import BASE_CLASS_TOKEN
from tatsu.codegen.cgbase import ModelRenderer, CodeGenerator
from tatsu.collections import OrderedSet as oset
from .. import grammars
from ..exceptions import CodegenError
from ..objectmodel import Node
from ..objectmodel import BASE_CLASS_TOKEN
from ..codegen.cgbase import ModelRenderer, CodeGenerator
from ..collections import OrderedSet as oset


class PythonCodeGenerator(CodeGenerator):
Expand Down

0 comments on commit 33df2ca

Please sign in to comment.