Skip to content

Commit 811caf0

Browse files
committed
Don't hide incorrect constructor params in BaseConnector
1 parent 8a44398 commit 811caf0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

aiohttp/connector.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ class BaseConnector(object):
6363
"""
6464

6565
def __init__(self, *, conn_timeout=None, keepalive_timeout=30,
66-
share_cookies=False, force_close=False, loop=None, **kwargs):
66+
share_cookies=False, force_close=False, loop=None):
6767
self._conns = {}
6868
self._conn_timeout = conn_timeout
6969
self._keepalive_timeout = keepalive_timeout

0 commit comments

Comments
 (0)