Skip to content

Commit 105baca

Browse files
authored
Merge pull request #781 from superannotateai/FRIDAY-3705
updated return in get_integrations
2 parents 5cb77b9 + d1800d7 commit 105baca

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

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

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3278,9 +3278,7 @@ def get_integrations(self):
32783278
if response.errors:
32793279
raise AppException(response.errors)
32803280
integrations = response.data
3281-
return BaseSerializer.serialize_iterable(
3282-
integrations, ("name", "type", "root") # noqa
3283-
)
3281+
return BaseSerializer.serialize_iterable(integrations)
32843282

32853283
def attach_items_from_integrated_storage(
32863284
self,

tests/integration/work_management/test_pause_resume_user_activity.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ def test_pause_and_resume_user_activity(self):
3737
u for u in users if u["role"] == "Contributor" and u["state"] == "Confirmed"
3838
][0]
3939
import pdb
40+
4041
pdb.set_trace()
4142
sa.add_contributors_to_project(self.PROJECT_NAME, [scapegoat["email"]], "QA")
4243
with self.assertLogs("sa", level="INFO") as cm:

0 commit comments

Comments
 (0)