Skip to content

Commit 1d9676d

Browse files
authored
Comment fix for documentation and changed function names
1 parent e974c34 commit 1d9676d

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

binance/client.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3452,7 +3452,7 @@ def get_all_isolated_margin_symbols(self, **params):
34523452
"""
34533453
return self._request_margin_api('get', 'margin/isolated/allPairs', signed=True, data=params)
34543454

3455-
def isolated_margin_fee_data(self, **params):
3455+
def get_isolated_margin_fee_data(self, **params):
34563456
"""Get isolated margin fee data collection with any vip level or user's current specific data as https://www.binance.com/en/margin-fee
34573457
34583458
https://binance-docs.github.io/apidocs/spot/en/#query-isolated-margin-fee-data-user_data
@@ -3461,11 +3461,10 @@ def isolated_margin_fee_data(self, **params):
34613461
:type vipLevel: int
34623462
:param symbol: optional
34633463
:type symbol: str
3464-
:param recvWindow: optional: No more tahn 60000
3465-
:type recvWindow: long
34663464
34673465
:returns: API response
34683466
3467+
.. code-block:: python
34693468
[
34703469
{
34713470
"vipLevel": 0,
@@ -3488,8 +3487,8 @@ def isolated_margin_fee_data(self, **params):
34883487
"""
34893488
return self._request_margin_api('get', 'margin/isolatedMarginData', True, data=params)
34903489

3491-
def isolated_margin_tier_data(self, **params):
3492-
"""
3490+
def get_isolated_margin_tier_data(self, **params):
3491+
"""Get isolated margin tier data collection with any tier as https://www.binance.com/en/margin-data
34933492
34943493
https://binance-docs.github.io/apidocs/spot/en/#query-isolated-margin-tier-data-user_data
34953494
@@ -3501,7 +3500,8 @@ def isolated_margin_tier_data(self, **params):
35013500
:type recvWindow:
35023501
35033502
:returns: API response
3504-
3503+
3504+
.. code-block:: python
35053505
[
35063506
{
35073507
"symbol": "BTCUSDT",

0 commit comments

Comments
 (0)