Skip to content

Commit

Permalink
Clowder typo fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Enkidu93 committed Jan 31, 2024
1 parent cefa85c commit 4437920
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion clowder/clowder.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ def status(investigation_name: Optional[str] = None, sync: bool = True, verbose:
for exp_name, exp_obj in obj["experiments"].items():
print(f"\t[bold]{exp_name}[/bold]")
print(f"\tStatus:\t{exp_obj['status']}")
print(f"\tClearML url:\t{exp_obj['clearml_task_url']}")
print(f"\tClearML url:\t{exp_obj.get('clearml_task_url')}")
else:
print(inv_name, f"[{color}]\t{obj['status'].value}[/{color}]")

Expand Down

0 comments on commit 4437920

Please sign in to comment.