diff options
author | Kali Kaneko <kali@leap.se> | 2015-07-28 11:41:32 -0400 |
---|---|---|
committer | Kali Kaneko <kali@leap.se> | 2015-07-28 11:41:32 -0400 |
commit | a119dd4fa2fc4a14577fd2d6e32dff950d934193 (patch) | |
tree | 27cec6f2ef4b3ac4396234a36b718864fe92e8de /src/leap/common/http.py | |
parent | 8668cf04e59bd4c1fe45a7e74cd0c214ae50b052 (diff) |
[style] more pep8 cleanup
Diffstat (limited to 'src/leap/common/http.py')
-rw-r--r-- | src/leap/common/http.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/leap/common/http.py b/src/leap/common/http.py index 8e8d3d9..1e7ded7 100644 --- a/src/leap/common/http.py +++ b/src/leap/common/http.py @@ -120,7 +120,8 @@ class HTTPClient(object): maxPersistentPerHost=10 ) - def __init__(self, cert_file=None, timeout=DEFAULT_HTTP_TIMEOUT, pool=None): + def __init__(self, cert_file=None, + timeout=DEFAULT_HTTP_TIMEOUT, pool=None): """ Init the HTTP client |