Skip to content

Commit db91f4f

Browse files
authored
Merge pull request #823 from superannotateai/FRIDAY_4586
Update remove_users_from_project docs
2 parents 4231871 + 174fc1b commit db91f4f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

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.5.1dev1"
6+
__version__ = "4.5.1dev2"
77

88

99
os.environ.update({"sa_version": __version__})

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5369,7 +5369,7 @@ def remove_users_from_project(
53695369
self, project: Union[NotEmptyStr, int], users: Union[List[int], List[str]]
53705370
):
53715371
"""
5372-
Allows removing users from the team.
5372+
Allows removing users from a project.
53735373
53745374
:param project: The name or ID of the project.
53755375
:type project: Union[NotEmptyStr, int]
@@ -5382,7 +5382,7 @@ def remove_users_from_project(
53825382
Request Example:
53835383
::
53845384
5385-
SAClient.remove_users_from_project(project="Test Project", users=["example@gmail.com","example1@gmail.com"])
5385+
sa_client.remove_users_from_project(project="Test Project", users=["example@gmail.com","example1@gmail.com"])
53865386
53875387
"""
53885388
project = self.controller.get_project(project)

0 commit comments

Comments
 (0)