From dc4268b6e767c419ae5258a223783ebe185e726f Mon Sep 17 00:00:00 2001 From: Matthias Date: Sat, 13 May 2023 13:38:51 +0200 Subject: [PATCH] Convert Exchange arguments to be kw only --- freqtrade/exchange/exchange.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/freqtrade/exchange/exchange.py b/freqtrade/exchange/exchange.py index 5273030ab..27c96a70d 100644 --- a/freqtrade/exchange/exchange.py +++ b/freqtrade/exchange/exchange.py @@ -92,7 +92,7 @@ class Exchange: # TradingMode.SPOT always supported and not required in this list ] - def __init__(self, config: Config, validate: bool = True, + def __init__(self, config: Config, *, validate: bool = True, load_leverage_tiers: bool = False) -> None: """ Initializes this module with the given config,