first version
This commit is contained in:
8
utils/json_load.py
Normal file
8
utils/json_load.py
Normal file
@ -0,0 +1,8 @@
|
||||
import json
|
||||
|
||||
|
||||
def json_load(filename, *args, **kwargs):
|
||||
with open(filename, "r") as f:
|
||||
return json.load(f, *args, **kwargs)
|
||||
|
||||
|
Reference in New Issue
Block a user