Skip to content

Commit 5259974

Browse files
committed
changes in reqs and __build_query_string
1 parent d4281a8 commit 5259974

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

requirements.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ boto3~=1.26
44
opencv-python-headless~=4.7
55
packaging~=23.1
66
plotly~=5.14
7-
email-validator~=2.0
87
pandas~=2.0
98
ffmpeg-python~=0.2
109
pillow>=9.5,~=10.0

src/superannotate/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import sys
44

55

6-
__version__ = "4.4.20"
6+
__version__ = "4.4.21dev1"
77

88
sys.path.append(os.path.split(os.path.realpath(__file__))[0])
99

src/superannotate/lib/core/usecases/items.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -972,7 +972,7 @@ def __build_query_string(self, path, item_names):
972972
_, folder = extract_project_folder(path)
973973
if not folder:
974974
folder = "root"
975-
query_str = f"metadata(name IN {str(item_names)}) AND folder={folder}"
975+
query_str = f"metadata(name IN {str(item_names)}) AND folderName={folder}"
976976

977977
return query_str
978978

0 commit comments

Comments
 (0)