mirror of
https://github.com/aljazceru/bitfinex-api-py.git
synced 2025-12-19 14:54:21 +01:00
Install and configure pylint. Add pylint to dev-requirements.txt. Start rewriting code to follow pylint's linting rules.
This commit is contained in:
@@ -173,8 +173,8 @@ class BfxWebsocketClient(object):
|
||||
if reconnection.status == False:
|
||||
break
|
||||
|
||||
async def __authenticate(self, API_KEY, API_SECRET, filter=None):
|
||||
data = { "event": "auth", "filter": filter, "apiKey": API_KEY }
|
||||
async def __authenticate(self, API_KEY, API_SECRET, filters=None):
|
||||
data = { "event": "auth", "filter": filters, "apiKey": API_KEY }
|
||||
|
||||
data["authNonce"] = str(round(time.time() * 1_000_000))
|
||||
|
||||
|
||||
Reference in New Issue
Block a user