Skip to content

Commit 90a2053

Browse files
authored
remove debug print (#54)
1 parent d32cb59 commit 90a2053

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

src/py/idom/tools.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,6 @@ def handle_starttag(self, tag: str, attrs: List[Tuple[str, str]]) -> None:
110110
current = self._node_stack[-1]
111111
current["children"].append(new)
112112
self._node_stack.append(new)
113-
print(self._node_stack[0])
114113

115114
def handle_endtag(self, tag: str) -> None:
116115
node = self._node_stack.pop(-1)

0 commit comments

Comments
 (0)