diff options
author | Thomas Kriechbaumer <thomas@kriechbaumer.name> | 2015-06-17 13:10:27 +0200 |
---|---|---|
committer | Thomas Kriechbaumer <thomas@kriechbaumer.name> | 2015-06-17 13:10:27 +0200 |
commit | 836b1eab9700230991822102d411aed067308123 (patch) | |
tree | c90cc203f95bf6c269cad460270e443b0e8b724e /netlib/utils.py | |
parent | ff20e64537ad25aa988f212b0473bdb5e696611b (diff) | |
download | mitmproxy-836b1eab9700230991822102d411aed067308123.tar.gz mitmproxy-836b1eab9700230991822102d411aed067308123.tar.bz2 mitmproxy-836b1eab9700230991822102d411aed067308123.zip |
fix warnings and code smells
use prospector to find them
Diffstat (limited to 'netlib/utils.py')
-rw-r--r-- | netlib/utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/netlib/utils.py b/netlib/utils.py index 9c5404e6..ac42bd53 100644 --- a/netlib/utils.py +++ b/netlib/utils.py @@ -67,7 +67,7 @@ def getbit(byte, offset): return True -class BiDi: +class BiDi(object): """ A wee utility class for keeping bi-directional mappings, like field |