Since this thing is on the innerwebs I suppose it should have a
[python_utils.git] / collect / trie.py
index fef28cb40ddfbad3ea1c4d45f341f8e5c7407127..547d67a4124abc07f425ecf21616bf2c509beb4e 100644 (file)
@@ -1,9 +1,13 @@
 #!/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.
+
+"""
 
 from typing import Any, Generator, Sequence