|
@@ -22,7 +22,7 @@ def read_config():
|
|
|
if not os.path.exists(config_file):
|
|
if not os.path.exists(config_file):
|
|
|
raise FileNotFoundError(f"{config_file} not found")
|
|
raise FileNotFoundError(f"{config_file} not found")
|
|
|
|
|
|
|
|
- with open(config_file, "r") as f:
|
|
|
|
|
|
|
+ with open(config_file, "r", encoding="utf-8") as f:
|
|
|
config = json.load(f)
|
|
config = json.load(f)
|
|
|
return config
|
|
return config
|
|
|
|
|
|