Remove timeout from __attrs__

We do not allow the user to set the timeout value on the Session any longer so
this is extraneous
This commit is contained in:
Ian Cordasco
2014-10-04 23:04:35 -05:00
parent e74791d054
commit b1f3a2dd66
+4 -3
View File
@@ -271,9 +271,10 @@ class Session(SessionRedirectMixin):
"""
__attrs__ = [
'headers', 'cookies', 'auth', 'timeout', 'proxies', 'hooks',
'params', 'verify', 'cert', 'prefetch', 'adapters', 'stream',
'trust_env', 'max_redirects', 'redirect_cache']
'headers', 'cookies', 'auth', 'proxies', 'hooks', 'params', 'verify',
'cert', 'prefetch', 'adapters', 'stream', 'trust_env',
'max_redirects', 'redirect_cache'
]
def __init__(self):