Skip to content

Commit fe31dc3

Browse files
committed
Fix integrations search
1 parent ac3e13a commit fe31dc3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/superannotate/lib/app/interface/sdk_interface.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2179,7 +2179,7 @@ def attach_items_from_integrated_storage(
21792179
if isinstance(integration, str):
21802180
integration = IntegrationEntity(name=integration)
21812181
for i in self.controller.integrations.list().data:
2182-
if integration == i.name:
2182+
if integration.name == i.name:
21832183
_integration = i
21842184
break
21852185
else:

0 commit comments

Comments
 (0)