Skip to content

Commit f05d09e

Browse files
committed
AL-3578: Format
1 parent f35d929 commit f05d09e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

labelbox/schema/confidence_presence_checker.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@ def check(cls, raw_labels: List[Dict[str, Any]]):
1313
return len(keys.intersection(set(["confidence"]))) == 1
1414

1515
@classmethod
16-
def _collect_keys_from_list(cls, objects: List[Dict[str, Any]], keys: Set[str]):
16+
def _collect_keys_from_list(cls, objects: List[Dict[str, Any]],
17+
keys: Set[str]):
1718
for obj in objects:
1819
if isinstance(obj, (list, tuple)):
1920
cls._collect_keys_from_list(obj, keys)

0 commit comments

Comments
 (0)