chore: properly remove ccxt reference

This commit is contained in:
Matthias
2024-11-29 07:00:42 +01:00
parent bd5877ad49
commit 5f363f5c9d
2 changed files with 0 additions and 7 deletions

View File

@@ -10,7 +10,6 @@ from io import BytesIO
from typing import Any from typing import Any
import aiohttp import aiohttp
import ccxt
import pandas as pd import pandas as pd
from pandas import DataFrame from pandas import DataFrame

View File

@@ -953,12 +953,6 @@ def test_get_historic_ohlcv_binance(
since_ms = dt_ts(since) since_ms = dt_ts(since)
until_ms = dt_ts(until) until_ms = dt_ts(until)
mocker.patch("freqtrade.exchange.binance_public_data.ccxt.binance")
mocker.patch(
"freqtrade.exchange.binance_public_data.ccxt.binance.markets",
{"BTC/USDT": {"id": "BTCUSDT"}},
)
df = exchange.get_historic_ohlcv(pair, timeframe, since_ms, candle_type, is_new_pair, until_ms) df = exchange.get_historic_ohlcv(pair, timeframe, since_ms, candle_type, is_new_pair, until_ms)
if df.empty: if df.empty: