Skip to content

Commit

Permalink
fix: black
Browse files Browse the repository at this point in the history
  • Loading branch information
martinkersner committed Jul 18, 2024
1 parent 9e364c7 commit afe273f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
6 changes: 1 addition & 5 deletions datamaxi/datamaxi/__init__.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
from typing import Any, Callable, Tuple, List, Dict, Union
import pandas as pd
from datamaxi.api import API
from datamaxi.lib.utils import check_required_parameter
from datamaxi.lib.utils import check_required_parameters
from typing import Any
from datamaxi.lib.constants import BASE_URL
from datamaxi.datamaxi.candle import Candle
from datamaxi.datamaxi.funding_rate import FundingRate
Expand Down
2 changes: 1 addition & 1 deletion datamaxi/datamaxi/funding_rate.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ def symbols(self, exchange: str, market: str = "spot") -> List[str]:
url_path = "/v1/funding-rate/symbols"
return self.query(url_path, params)

def funding_rate(
def get(
self,
exchange: str,
symbol: str,
Expand Down

0 comments on commit afe273f

Please sign in to comment.