Skip to content

Commit

Permalink
config_path=None was not handled correctly
Browse files Browse the repository at this point in the history
  • Loading branch information
Nikolas Dahn committed Jul 19, 2024
1 parent d04b7b0 commit d53ca85
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/common/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def __repr__(self) -> str:
return str(self.args)


def get_config(config_path: str = None) -> dict:
def get_config(config_path: str = "") -> dict:
if not config_path and len(sys.argv) > 1:
config_path = sys.argv[1]

Expand Down

0 comments on commit d53ca85

Please sign in to comment.