Skip to content

Commit c205608

Browse files
authored
Merge pull request freqtrade#12419 from stash86/main-stash
Fix typo
2 parents 803db3b + cdb194a commit c205608

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ft_client/freqtrade_client/ft_rest_client.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -443,13 +443,13 @@ def available_pairs(self, timeframe=None, stake_currency=None):
443443
"""Return available pair (backtest data) based on timeframe / stake_currency selection
444444
445445
:param timeframe: Only pairs with this timeframe available.
446-
:param stake_currency: Only pairs that include this timeframe
446+
:param stake_currency: Only pairs that include this stake currency.
447447
:return: json object
448448
"""
449449
return self._get(
450450
"available_pairs",
451451
params={
452-
"stake_currency": stake_currency if timeframe else "",
452+
"stake_currency": stake_currency if stake_currency else "",
453453
"timeframe": timeframe if timeframe else "",
454454
},
455455
)

0 commit comments

Comments
 (0)