Skip to content

Commit 7fa0bb2

Browse files
committed
Fix linting
1 parent 5a2ac10 commit 7fa0bb2

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

libs/labelbox/src/labelbox/schema/user_group.py

+1-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from collections import defaultdict
22
from enum import Enum
3-
from typing import Iterator, List, Set
3+
from typing import Iterator, Set
44

55
from 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.

libs/labelbox/src/labelbox/schema/user_group_upload.py

+2
Original file line numberDiff line numberDiff 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
4950
class UploadReport:
5051
"""The report of the upload members mutation."""
52+
5153
lines: List[UploadReportLine]
5254

5355

0 commit comments

Comments
 (0)