renamed load_json to load_json_file

This commit is contained in:
iLLiCiTiT 2020-10-03 01:15:19 +02:00
parent ce176c2732
commit dfe666e61f

View file

@ -59,7 +59,7 @@ def default_settings():
return _DEFAULT_SETTINGS
def load_json(fpath):
def load_json_file(fpath):
# Load json data
with open(fpath, "r") as opened_file:
lines = opened_file.read().splitlines()