diff options
| author | Scott Gasch <[email protected]> | 2022-06-14 07:57:54 -0700 |
|---|---|---|
| committer | Scott Gasch <[email protected]> | 2022-06-14 07:57:54 -0700 |
| commit | fa101dcf585cc6578ed3fd9a0cea748c0114b59c (patch) | |
| tree | 95b0639426da623e9cda194b5f06a4a23c23b420 /collect/trie.py | |
| parent | f9067b4f09f7effbfd1fd1d89b8a0050b4270bc9 (diff) | |
Add logging to trie.
Diffstat (limited to 'collect/trie.py')
| -rw-r--r-- | collect/trie.py | 3 |
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): """ |
