projects
/
python_utils.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f9067b4
)
Add logging to trie.
author
Scott Gasch
<
[email protected]
>
Tue, 14 Jun 2022 14:57:54 +0000
(07:57 -0700)
committer
Scott Gasch
<
[email protected]
>
Tue, 14 Jun 2022 14:57:54 +0000
(07:57 -0700)
collect/trie.py
patch
|
blob
|
history
diff --git
a/collect/trie.py
b/collect/trie.py
index 547d67a4124abc07f425ecf21616bf2c509beb4e..36b246969d39381ccc7388a9bc63d4dc2651346f 100644
(file)
--- 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):
"""