Skip to content

Commit

Permalink
fix(exchanges): forgot to commit some part of code
Browse files Browse the repository at this point in the history
  • Loading branch information
Romakl committed Mar 13, 2024
1 parent b82413b commit 5a4805d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion exchanges/exchange_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,9 @@ def filter_markets(self, markets_df: pd.DataFrame) -> dict:
filtered_markets[pair][market_type] = symbols
return filtered_markets

def handle_market_type(self, loaded_markets: dict) -> tuple[DataFrame, DataFrame] | None:
def handle_market_type(
self, loaded_markets: dict
) -> tuple[DataFrame, DataFrame] | None:
dataframe = None
for pair in self.pairs_to_load:
future_symbols = loaded_markets.get(pair, {}).get("future", [])
Expand Down

0 comments on commit 5a4805d

Please sign in to comment.