Reduce the doctest lease duration...
[python_utils.git] / collect / trie.py
index fef28cb40ddfbad3ea1c4d45f341f8e5c7407127..36b246969d39381ccc7388a9bc63d4dc2651346f 100644 (file)
@@ -1,12 +1,19 @@
 #!/usr/bin/env python3
 
+# © Copyright 2021-2022, Scott Gasch
+
 """This is a Trie class, see: https://en.wikipedia.org/wiki/Trie.
 
-   It attempts to follow Pythonic container patterns.  See doctests
-   for examples."""
+It attempts to follow Pythonic container patterns.  See doctests
+for examples.
+
+"""
 
+import logging
 from typing import Any, Generator, Sequence
 
+logger = logging.getLogger(__name__)
+
 
 class Trie(object):
     """