Fixed linting line length issue

This commit is contained in:
Ali Salama
2026-01-21 10:25:35 +00:00
parent 1747724206
commit 8cb72e1fa3

View File

@@ -2565,7 +2565,8 @@ class Exchange:
logger.debug(f"Downloaded data for {pair} from ccxt with length {len(data)}.")
return ohlcv_to_dataframe(data, timeframe, pair, fill_missing=False,
# funding_rates are always complete, so never need to be dropped.
drop_incomplete=self._ohlcv_partial_candle if candle_type != CandleType.FUNDING_RATE else False)
drop_incomplete=self._ohlcv_partial_candle if candle_type != CandleType.FUNDING_RATE
else False)
async def _async_get_historic_ohlcv(
self,