File tree Expand file tree Collapse file tree 2 files changed +3
-4
lines changed
libs/labelbox/src/labelbox/schema Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change 11from collections import defaultdict
22from enum import Enum
3- from typing import Iterator , List , Set
3+ from typing import Iterator , Set
44
55from lbox .exceptions import (
66 MalformedQueryException ,
@@ -317,9 +317,6 @@ def delete(self) -> bool:
317317 )
318318 return result ["deleteUserGroup" ]["success" ]
319319
320- def import_members (self , role : str , emails : List [str ]):
321- pass
322-
323320 def get_user_groups (self ) -> Iterator ["UserGroup" ]:
324321 """
325322 Gets all user groups in Labelbox.
Original file line number Diff line number Diff line change @@ -40,6 +40,7 @@ class UploadReportLine:
4040 >>> ]
4141 >>> }
4242 """
43+
4344 email : str
4445 result : str
4546 error : Optional [str ] = None
@@ -48,6 +49,7 @@ class UploadReportLine:
4849@dataclass
4950class UploadReport :
5051 """The report of the upload members mutation."""
52+
5153 lines : List [UploadReportLine ]
5254
5355
You can’t perform that action at this time.
0 commit comments