aboutsummaryrefslogtreecommitdiff
path: root/src/hydrilla/pattern_tree.py
diff options
context:
space:
mode:
authorWojtek Kosior <koszko@koszko.org>2022-08-25 10:44:05 +0200
committerWojtek Kosior <koszko@koszko.org>2022-09-28 12:54:53 +0200
commit3a1da529bdba0c353b10f6fe2cf1024feb81f809 (patch)
treeb2d332bd18a6f2167e52cd8a75c497234fcfab18 /src/hydrilla/pattern_tree.py
parentc8eb1012980a08a51d78da0c3955cc5ba6edf5ed (diff)
downloadhaketilo-hydrilla-3a1da529bdba0c353b10f6fe2cf1024feb81f809.tar.gz
haketilo-hydrilla-3a1da529bdba0c353b10f6fe2cf1024feb81f809.zip
[proxy] normalize whitespace in .py and .sql files
Diffstat (limited to 'src/hydrilla/pattern_tree.py')
-rw-r--r--src/hydrilla/pattern_tree.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/hydrilla/pattern_tree.py b/src/hydrilla/pattern_tree.py
index 99f45a5..e71f8d0 100644
--- a/src/hydrilla/pattern_tree.py
+++ b/src/hydrilla/pattern_tree.py
@@ -58,7 +58,7 @@ NodeStoredType = t.TypeVar('NodeStoredType')
class PatternTreeNode(t.Generic[NodeStoredType]):
"""...."""
SelfType = t.TypeVar('SelfType', bound='PatternTreeNode[NodeStoredType]')
-
+
ChildrenType = Map[str, SelfType]
children: 'ChildrenType' = Map()