style: ruff format

This commit is contained in:
matstedt
2026-02-14 20:36:38 +01:00
committed by Matthias
parent 0dc26584cc
commit eaa35d7b47
+1 -3
View File
@@ -64,9 +64,7 @@ class TestCCXTExchange:
if not expected_count:
pytest.skip("No expected candle count for exchange")
candle_type = (
CandleType.FUTURES if exchange_params.get("futures_only") else CandleType.SPOT
)
candle_type = CandleType.FUTURES if exchange_params.get("futures_only") else CandleType.SPOT
assert exch.ohlcv_candle_limit("1m", candle_type) == expected_count
def test_load_markets_futures(self, exchange_futures: EXCHANGE_FIXTURE_TYPE):