diff options
| author | Scott Gasch <[email protected]> | 2022-02-03 14:18:37 -0800 |
|---|---|---|
| committer | Scott Gasch <[email protected]> | 2022-02-03 14:18:37 -0800 |
| commit | 713a609bd19d491de03debf8a4a6ddf2540b13dc (patch) | |
| tree | 6593978162d3c11c3a54e44a770aded4abc79704 /collect/bidict.py | |
| parent | eb1c6392095947b3205c4d52cd9b1507e6cd776b (diff) | |
Change settings in flake8 and black.
Diffstat (limited to 'collect/bidict.py')
| -rw-r--r-- | collect/bidict.py | 2 |
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() |
