diff --git a/fireblocks_sdk/sdk.py b/fireblocks_sdk/sdk.py index 9b5ff64..66c9252 100644 --- a/fireblocks_sdk/sdk.py +++ b/fireblocks_sdk/sdk.py @@ -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)