Skip to content

Commit

Permalink
Update entrypoint.py
Browse files Browse the repository at this point in the history
  • Loading branch information
hsz1273327 committed Jun 18, 2024
1 parent 72a4db3 commit 9c31599
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion schema_entry/entrypoint.py
Original file line number Diff line number Diff line change
Expand Up @@ -366,7 +366,7 @@ def parse_json_configfile_args(self, p: Path) -> Dict[str, Any]:

def parse_yaml_configfile_args(self, p: Path) -> Dict[str, Any]:
with open(p, "r", encoding="utf-8") as f:
result = yaml.load(f,Loader=yaml.CLoader)
result = yaml.load(f, Loader=yaml.CLoader)
return result

def regist_config_file_parser(self, file_name: str) -> Callable[[Callable[[Path], Dict[str, Any]]], Callable[[Path], Dict[str, Any]]]:
Expand Down

0 comments on commit 9c31599

Please sign in to comment.