Since this thing is on the innerwebs I suppose it should have a
[python_utils.git] / collect / bidict.py
index 8153e54446c8a4c5a36f96ba85e0b93c9afafe18..375721e4a2652564ddfe42c6dc61925f8c7b4a76 100644 (file)
@@ -1,5 +1,10 @@
 #!/usr/bin/env python3
 
+# © Copyright 2021-2022, Scott Gasch
+
+"""Bidirectional Dictionary."""
+
+
 class BiDict(dict):
     def __init__(self, *args, **kwargs):
         """
@@ -50,4 +55,5 @@ class BiDict(dict):
 
 if __name__ == '__main__':
     import doctest
+
     doctest.testmod()