Apply pylint's linting rules to examples/rest/authenticated/*.py.

This commit is contained in:
Davide Casale
2023-03-08 19:39:00 +01:00
parent bd09cc4ae4
commit 88c016e1f8
6 changed files with 19 additions and 19 deletions

View File

@@ -14,11 +14,11 @@ bfx = Client(
# Submit a new funding offer
notification: Notification[FundingOffer] = bfx.rest.auth.submit_funding_offer(
type=FundingOfferType.LIMIT,
symbol="fUSD",
amount=123.45,
rate=0.001,
period=2,
type=FundingOfferType.LIMIT,
symbol="fUSD",
amount=123.45,
rate=0.001,
period=2,
flags=Flag.HIDDEN
)
@@ -27,4 +27,4 @@ print("Funding Offer notification:", notification)
# Get all fUSD active funding offers
offers = bfx.rest.auth.get_funding_offers(symbol="fUSD")
print("Offers (fUSD):", offers)
print("Offers (fUSD):", offers)