From 3407a2be5dae29d9a9c447d12fcb4cb4539a84db Mon Sep 17 00:00:00 2001 From: chintanarya Date: Mon, 16 Dec 2024 01:26:22 +0530 Subject: [PATCH] tad data download --- aryaxai/core/project.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/aryaxai/core/project.py b/aryaxai/core/project.py index 132fa19..a0c7daf 100755 --- a/aryaxai/core/project.py +++ b/aryaxai/core/project.py @@ -2590,7 +2590,8 @@ def get_tag_data( :return: dataframe """ - available_tags = self.tags() + tags = self.available_tags() + available_tags = tags['alltags'] if tag not in available_tags: raise Exception( f"{tag} tag is not valid, select valid tag from :\n{available_tags}"