Skip to content

Commit c1686ac

Browse files
committed
Update doc string
1 parent dae13b9 commit c1686ac

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2804,8 +2804,8 @@ def add_contributors_to_project(
28042804
:param role: user role to apply, one of Admin , Annotator , QA
28052805
:type role: str
28062806
2807-
return: lists of added, skipped contributors of the project
2808-
rtype: tuple (2 members) of lists of strs
2807+
:return: lists of added, skipped contributors of the project
2808+
:rtype: tuple (2 members) of lists of strs
28092809
"""
28102810
response = controller.add_contributors_to_project(
28112811
project_name=project, emails=emails, role=role
@@ -2828,8 +2828,8 @@ def invite_contributors_to_team(
28282828
:param admin: enables admin privileges for the contributor
28292829
:type admin: bool
28302830
2831-
return: lists of invited, skipped contributors of the team
2832-
rtype: tuple (2 members) of lists of strs
2831+
:return: lists of invited, skipped contributors of the team
2832+
:rtype: tuple (2 members) of lists of strs
28332833
"""
28342834
response = controller.invite_contributors_to_team(emails=emails, set_admin=admin)
28352835
if response.errors:

0 commit comments

Comments
 (0)