9 lines
138 B
Python
9 lines
138 B
Python
import json
|
|
|
|
|
|
def json_load(filename, *args, **kwargs):
|
|
with open(filename, "r") as f:
|
|
return json.load(f, *args, **kwargs)
|
|
|
|
|