Skip to content

Commit

Permalink
fix tabs
Browse files Browse the repository at this point in the history
  • Loading branch information
vsiskin committed Jul 4, 2024
1 parent f20c27e commit a350ca5
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions fireblocks_sdk/sdk.py
Original file line number Diff line number Diff line change
Expand Up @@ -407,16 +407,16 @@ def get_supported_assets(self):
def set_asset_price(self, id: str, currency: str, price: int):
"""Set asset price
Args:
id (str): The asset ID
currency (str): The currency (according to ISO 4217 currency codes)
price (str): The price in currency
Args:
id (str): The asset ID
currency (str): The currency (according to ISO 4217 currency codes)
price (str): The price in currency
"""

body = {
"currency": currency,
"price": price,
}
body = {
"currency": currency,
"price": price,
}

return self._post_request(f"/v1/assets/prices/${id}", body)

Expand Down

0 comments on commit a350ca5

Please sign in to comment.