mirror of
https://github.com/aljazceru/bitfinex-api-py.git
synced 2025-12-19 23:04:21 +01:00
Apply pylint's linting rules to examples/rest/authenticated/*.py.
This commit is contained in:
@@ -19,8 +19,8 @@ wallets: List[Wallet] = bfx.rest.auth.get_wallets()
|
||||
|
||||
# Transfers funds (0.001 ETH) from exchange wallet to funding wallet
|
||||
A: Notification[Transfer] = bfx.rest.auth.transfer_between_wallets(
|
||||
from_wallet="exchange", to_wallet="funding", from_currency="ETH",
|
||||
to_currency="ETH", amount=0.001)
|
||||
from_wallet="exchange", to_wallet="funding", currency="ETH",
|
||||
currency_to="ETH", amount=0.001)
|
||||
|
||||
print("Transfer:", A.data)
|
||||
|
||||
@@ -41,4 +41,4 @@ D: Notification[Withdrawal] = bfx.rest.auth.submit_wallet_withdrawal(
|
||||
wallet="exchange", method="tetheruse", address="0x742d35Cc6634C0532925a3b844Bc454e4438f44e",
|
||||
amount=1.0)
|
||||
|
||||
print("Withdrawal:", D.data)
|
||||
print("Withdrawal:", D.data)
|
||||
|
||||
Reference in New Issue
Block a user