mirror of
https://github.com/freqtrade/freqtrade.git
synced 2025-11-29 08:33:07 +00:00
Have Pool parameters be kw only
This commit is contained in:
@@ -21,7 +21,7 @@ logger = logging.getLogger("ft_rest_client")
|
||||
|
||||
class FtRestClient:
|
||||
|
||||
def __init__(self, serverurl, username=None, password=None,
|
||||
def __init__(self, serverurl, username=None, password=None, *,
|
||||
pool_connections=10, pool_maxsize=10):
|
||||
|
||||
self._serverurl = serverurl
|
||||
|
||||
Reference in New Issue
Block a user