Skip to content

Commit e1d1026

Browse files
author
gdj0nes
committed
FIX: formatting
1 parent 32f4b72 commit e1d1026

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

labelbox/data/annotation_types/label.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,13 +55,13 @@ def _get_annotations_by_type(self, annotation_type):
5555
]
5656

5757
def frame_annotations(
58-
self
58+
self
5959
) -> Dict[str, Union[VideoObjectAnnotation, VideoClassificationAnnotation]]:
6060
frame_dict = defaultdict(list)
6161
for annotation in self.annotations:
6262
if isinstance(
6363
annotation,
64-
(VideoObjectAnnotation, VideoClassificationAnnotation)):
64+
(VideoObjectAnnotation, VideoClassificationAnnotation)):
6565
frame_dict[annotation.frame].append(annotation)
6666
return frame_dict
6767

0 commit comments

Comments
 (0)