Skip to content

Commit

Permalink
cleanup: removed DEBUG statement that accidentally made it into release
Browse files Browse the repository at this point in the history
  • Loading branch information
proycon committed Mar 25, 2024
1 parent bf29b2a commit aed1e3d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion folia/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -4313,7 +4313,6 @@ def parsexml(Class, node, doc, **kwargs):#pylint: disable=bad-classmethod-argume
if not kwargs: kwargs = {}
if 'id' in node.attrib:
kwargs['idref'] = node.attrib['id']
print("DEBUG parsed ", kwargs['idref'],file=sys.stderr)
del node.attrib['id']
if 'type' in node.attrib:
kwargs['type'] = node.attrib['type']
Expand Down Expand Up @@ -6885,6 +6884,7 @@ class Cell(AbstractStructureElement):
"""A cell in a :class:`Row` in a :class:`Table`"""
pass


class Row(AbstractStructureElement):
"""A row in a :class:`Table`"""
pass
Expand Down

0 comments on commit aed1e3d

Please sign in to comment.