From 532df2c5b57c7517dfb3dddd8c1358fbadf8baf3 Mon Sep 17 00:00:00 2001 From: Scott Gasch Date: Fri, 25 Mar 2022 09:41:31 -0700 Subject: Since this thing is on the innerwebs I suppose it should have a copyright... --- collect/trie.py | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'collect/trie.py') diff --git a/collect/trie.py b/collect/trie.py index fef28cb..547d67a 100644 --- a/collect/trie.py +++ b/collect/trie.py @@ -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 -- cgit v1.3