Merge pull request #12419 from stash86/main-stash

Fix typo
This commit is contained in:
Matthias
2025-10-25 08:49:17 +02:00
committed by GitHub

View File

@@ -443,13 +443,13 @@ class FtRestClient:
"""Return available pair (backtest data) based on timeframe / stake_currency selection """Return available pair (backtest data) based on timeframe / stake_currency selection
:param timeframe: Only pairs with this timeframe available. :param timeframe: Only pairs with this timeframe available.
:param stake_currency: Only pairs that include this timeframe :param stake_currency: Only pairs that include this stake currency.
:return: json object :return: json object
""" """
return self._get( return self._get(
"available_pairs", "available_pairs",
params={ params={
"stake_currency": stake_currency if timeframe else "", "stake_currency": stake_currency if stake_currency else "",
"timeframe": timeframe if timeframe else "", "timeframe": timeframe if timeframe else "",
}, },
) )