removing “if ujson_found is not None:” as “json” refers to “ujson” if

it exists
This commit is contained in:
misagh 2018-09-21 22:06:09 +02:00
parent c11e97caf6
commit d6d3dfdcc2

View File

@ -77,16 +77,10 @@ def load_tickerdata_file(
if os.path.isfile(gzipfile):
logger.debug('Loading ticker data from file %s', gzipfile)
with gzip.open(gzipfile) as tickerdata:
if ujson_found is not None:
pairdata = ujson.load(tickerdata, precise_float=True)
else:
pairdata = json.load(tickerdata)
elif os.path.isfile(file):
logger.debug('Loading ticker data from file %s', file)
with open(file) as tickerdata:
if ujson_found is not None:
pairdata = ujson.load(tickerdata, precise_float=True)
else:
pairdata = json.load(tickerdata)
else:
return None
@ -183,9 +177,6 @@ def load_cached_data_for_updating(filename: str,
# read the cached file
if os.path.isfile(filename):
with open(filename, "rt") as file:
if ujson_found is not None:
data = ujson.load(file, precise_float=True)
else:
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