diff options
author | Thomas Kriechbaumer <thomas@kriechbaumer.name> | 2016-05-28 22:17:02 +0200 |
---|---|---|
committer | Thomas Kriechbaumer <thomas@kriechbaumer.name> | 2016-05-28 22:17:02 +0200 |
commit | e5038c9ab7a6718e7a3408a43549231929c7beb9 (patch) | |
tree | ba9255d148fa325a0adf0b891436cb5559b1cc1d /netlib/socks.py | |
parent | e1cc91900f95c82e15d39cac1e0b9fa8b265d391 (diff) | |
download | mitmproxy-e5038c9ab7a6718e7a3408a43549231929c7beb9.tar.gz mitmproxy-e5038c9ab7a6718e7a3408a43549231929c7beb9.tar.bz2 mitmproxy-e5038c9ab7a6718e7a3408a43549231929c7beb9.zip |
netlib: fix most flake8 offenses
Diffstat (limited to 'netlib/socks.py')
-rw-r--r-- | netlib/socks.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/netlib/socks.py b/netlib/socks.py index 57ccd1be..675fa784 100644 --- a/netlib/socks.py +++ b/netlib/socks.py @@ -147,7 +147,7 @@ class UsernamePasswordAuth(object): class UsernamePasswordAuthResponse(object): - __slots__ = ("ver", "status") + __slots__ = ("ver", "status") def __init__(self, ver, status): self.ver = ver |