Skip to content

Commit

Permalink
Fix clearml-search cli error if dataset version is None (#1329)
Browse files Browse the repository at this point in the history
Co-authored-by: Vignesh D <[email protected]>
  • Loading branch information
d-vignesh and Vignesh D authored Sep 20, 2024
1 parent 99db5e7 commit d069339
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion clearml/cli/data/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -656,7 +656,7 @@ def ds_search(args):
formatting.format(
d["project"],
d["name"],
d["version"],
d["version"] or "",
str(d["tags"] or [])[1:-1],
str(d["created"]).split(".")[0],
d["id"],
Expand Down

0 comments on commit d069339

Please sign in to comment.