mirror of
https://github.com/freqtrade/freqtrade.git
synced 2024-11-10 10:21:59 +00:00
Remove broken ujson loading - replace with variable-based fix
This commit is contained in:
parent
cb2fff8909
commit
7d72e364aa
|
@ -3,10 +3,11 @@
|
|||
import gzip
|
||||
try:
|
||||
import ujson as json
|
||||
_UJSON = True
|
||||
except ImportError:
|
||||
# see mypy/issues/1153
|
||||
import json # type: ignore
|
||||
import inspect
|
||||
_UJSON = False
|
||||
import logging
|
||||
import os
|
||||
from typing import Optional, List, Dict, Tuple, Any
|
||||
|
@ -21,7 +22,7 @@ logger = logging.getLogger(__name__)
|
|||
|
||||
def json_load(data):
|
||||
"""Try to load data with ujson"""
|
||||
if inspect.getfullargspec(json.load)[5].get('precise_float'):
|
||||
if _UJSON:
|
||||
return json.load(data, precise_float=True)
|
||||
else:
|
||||
return json.load(data)
|
||||
|
|
Loading…
Reference in New Issue
Block a user