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-09 13:55:05 +0200
commit27acc83e68351b13a55fd9f892737d33588bc971 (patch)
treefd052e978f8d15b986d40d753d57f95ec637c06b /src/hydrilla/pattern_tree.py
parent11a0d8c93a35cc9f00d64bd2e8add03a4368c601 (diff)
downloadhaketilo-hydrilla-27acc83e68351b13a55fd9f892737d33588bc971.tar.gz
haketilo-hydrilla-27acc83e68351b13a55fd9f892737d33588bc971.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()