From 0fba023fc431d0f872ab6234b0938883490a2b4b Mon Sep 17 00:00:00 2001 From: Alex Burlacu Date: Tue, 23 May 2023 14:57:07 +0300 Subject: [PATCH] Add version to clearml-data list command --- clearml/cli/data/__main__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/clearml/cli/data/__main__.py b/clearml/cli/data/__main__.py index 79103fa3..202b98d5 100644 --- a/clearml/cli/data/__main__.py +++ b/clearml/cli/data/__main__.py @@ -553,12 +553,12 @@ def ds_search(args): + str(id_col_len) + "}" ) - print(formatting.format("project", "name", "tags", "created", "id")) + print(formatting.format("project", "name", "version", "tags", "created", "id")) print("-" * len(formatting.format("-", "-", "-", "-", "-"))) for d in datasets: print( formatting.format( - d["project"], d["name"], str(d["tags"] or [])[1:-1], str(d["created"]).split(".")[0], d["id"] + d["project"], d["name"], d["version"], str(d["tags"] or [])[1:-1], str(d["created"]).split(".")[0], d["id"] ) ) return 0