Update freqtrade/plugins/pairlist/CrossMarketPairList.py

Co-authored-by: Matthias <xmatthias@outlook.com>
This commit is contained in:
Stefano
2026-03-01 08:28:56 +09:00
committed by GitHub
parent 3b59616cbe
commit 64f87fe187

View File

@@ -61,7 +61,7 @@ class CrossMarketPairList(IPairList):
**IPairList.refresh_period_parameter(),
}
def get_base_list(self):
def get_base_list(self) -> list[str]:
target_mode = self._target_mode
spot_only = True if target_mode == "spot" else False
futures_only = True if target_mode == "futures" else False