Skip to content

Commit

Permalink
Don't hide incorrect constructor params in BaseConnector
Browse files Browse the repository at this point in the history
  • Loading branch information
spumer committed Sep 2, 2014
1 parent 8a44398 commit 811caf0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aiohttp/connector.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ class BaseConnector(object):
"""

def __init__(self, *, conn_timeout=None, keepalive_timeout=30,
share_cookies=False, force_close=False, loop=None, **kwargs):
share_cookies=False, force_close=False, loop=None):
self._conns = {}
self._conn_timeout = conn_timeout
self._keepalive_timeout = keepalive_timeout
Expand Down

0 comments on commit 811caf0

Please sign in to comment.