Skip to content

Commit

Permalink
fix: missing import
Browse files Browse the repository at this point in the history
  • Loading branch information
martinkersner committed Jul 26, 2024
1 parent 57709bd commit 641e9aa
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion datamaxi/datamaxi/ticker.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
import pandas as pd
from datamaxi.api import API
from datamaxi.lib.utils import check_required_parameters
from datamaxi.lib.utils import check_required_parameter
from datamaxi.datamaxi.utils import convert_data_to_data_frame


Expand Down Expand Up @@ -60,7 +61,7 @@ def get(
else:
return res

def exchanges(self, exchange: str) -> List[str]:
def exchanges(self) -> List[str]:
"""Fetch supported exchanges accepted by
[datamaxi.Ticker.get](./#datamaxi.datamaxi.Ticker.get)
API.
Expand Down

0 comments on commit 641e9aa

Please sign in to comment.