mirror of
https://github.com/aljazceru/bitfinex-api-py.git
synced 2025-12-21 15:54:26 +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:
@@ -4,7 +4,7 @@ from bfxapi import Client, PUB_REST_HOST
|
||||
from bfxapi.rest.enums import Sort
|
||||
from bfxapi.rest.types import List, TradingPairTrade, FundingCurrencyTrade
|
||||
|
||||
bfx = Client(REST_HOST=PUB_REST_HOST)
|
||||
bfx = Client(rest_host=PUB_REST_HOST)
|
||||
|
||||
t_trades: List[TradingPairTrade] = bfx.rest.public.get_t_trades("tBTCUSD", \
|
||||
limit=15, sort=Sort.ASCENDING)
|
||||
|
||||
Reference in New Issue
Block a user