Revert "backtesting: try to load data with ujson if it exists"

This commit is contained in:
Matthias 2018-07-29 13:23:11 +02:00 committed by GitHub
parent 618784d060
commit 7f27beff4b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,12 +1,7 @@
# pragma pylint: disable=missing-docstring
import gzip
try:
import ujson as json
except ImportError:
# see mypy/issues/1153
import json # type: ignore
import inspect
import json
import logging
import os
from typing import Optional, List, Dict, Tuple, Any
@ -19,14 +14,6 @@ from freqtrade.arguments import TimeRange
logger = logging.getLogger(__name__)
def json_load(data):
"""Try to load data with ujson"""
if inspect.getfullargspec(json.load)[5].get('precise_float'):
return json.load(data, precise_float=True)
else:
return json.load(data)
def trim_tickerlist(tickerlist: List[Dict], timerange: TimeRange) -> List[Dict]:
if not tickerlist:
return tickerlist
@ -76,11 +63,11 @@ def load_tickerdata_file(
if os.path.isfile(gzipfile):
logger.debug('Loading ticker data from file %s', gzipfile)
with gzip.open(gzipfile) as tickerdata:
pairdata = json_load(tickerdata)
pairdata = json.load(tickerdata)
elif os.path.isfile(file):
logger.debug('Loading ticker data from file %s', file)
with open(file) as tickerdata:
pairdata = json_load(tickerdata)
pairdata = json.load(tickerdata)
else:
return None
@ -176,7 +163,7 @@ def load_cached_data_for_updating(filename: str,
# read the cached file
if os.path.isfile(filename):
with open(filename, "rt") as file:
data = json_load(file)
data = json.load(file)
# remove the last item, because we are not sure if it is correct
# it could be fetched when the candle was incompleted
if data: