File tree 2 files changed +3
-4
lines changed
libs/labelbox/src/labelbox/schema
2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change 1
1
from collections import defaultdict
2
2
from enum import Enum
3
- from typing import Iterator , List , Set
3
+ from typing import Iterator , Set
4
4
5
5
from lbox .exceptions import (
6
6
MalformedQueryException ,
@@ -317,9 +317,6 @@ def delete(self) -> bool:
317
317
)
318
318
return result ["deleteUserGroup" ]["success" ]
319
319
320
- def import_members (self , role : str , emails : List [str ]):
321
- pass
322
-
323
320
def get_user_groups (self ) -> Iterator ["UserGroup" ]:
324
321
"""
325
322
Gets all user groups in Labelbox.
Original file line number Diff line number Diff line change @@ -40,6 +40,7 @@ class UploadReportLine:
40
40
>>> ]
41
41
>>> }
42
42
"""
43
+
43
44
email : str
44
45
result : str
45
46
error : Optional [str ] = None
@@ -48,6 +49,7 @@ class UploadReportLine:
48
49
@dataclass
49
50
class UploadReport :
50
51
"""The report of the upload members mutation."""
52
+
51
53
lines : List [UploadReportLine ]
52
54
53
55
You can’t perform that action at this time.
0 commit comments