Skip to content

Commit 647de22

Browse files
Remove dumb format
1 parent 7218ea2 commit 647de22

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

jsonconfigparser.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ def __create_new_instace(cls,schema:dict, path_file:str):
2626
raise ConfigException("The first config's element should be a Map")
2727
cls.__instance = cls.__dict_2_obj(config)
2828
except json.JSONDecodeError:
29-
raise ConfigException("{}".format("Wasn't possible to decode the json file:{}".format(path_file)))
29+
raise ConfigException("Wasn't possible to decode the json file:{}".format(path_file))
3030
except SchemaError as e:
3131
raise ConfigException(str(e))
3232

0 commit comments

Comments
 (0)