summaryrefslogtreecommitdiff
path: root/collect/bidict.py
diff options
context:
space:
mode:
Diffstat (limited to 'collect/bidict.py')
-rw-r--r--collect/bidict.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/collect/bidict.py b/collect/bidict.py
index 8153e54..d288174 100644
--- a/collect/bidict.py
+++ b/collect/bidict.py
@@ -1,5 +1,6 @@
#!/usr/bin/env python3
+
class BiDict(dict):
def __init__(self, *args, **kwargs):
"""
@@ -50,4 +51,5 @@ class BiDict(dict):
if __name__ == '__main__':
import doctest
+
doctest.testmod()