summaryrefslogtreecommitdiff
path: root/collect
diff options
context:
space:
mode:
Diffstat (limited to 'collect')
-rw-r--r--collect/trie.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/collect/trie.py b/collect/trie.py
index 547d67a..36b2469 100644
--- a/collect/trie.py
+++ b/collect/trie.py
@@ -9,8 +9,11 @@ for examples.
"""
+import logging
from typing import Any, Generator, Sequence
+logger = logging.getLogger(__name__)
+
class Trie(object):
"""