Skip to content

Commit 2cf349d

Browse files
committed
Code reformat
1 parent 722627f commit 2cf349d

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/superannotate/lib/core/usecases/annotations.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -573,7 +573,10 @@ def get_annotation_from_s3(bucket, path: str):
573573

574574
def prepare_annotation(self, annotation: dict, size) -> dict:
575575
errors = None
576-
if size < BIG_FILE_THRESHOLD and self._project.type < constants.ProjectType.PIXEL.value:
576+
if (
577+
size < BIG_FILE_THRESHOLD
578+
and self._project.type < constants.ProjectType.PIXEL.value
579+
):
577580
use_case = ValidateAnnotationUseCase(
578581
reporter=self.reporter,
579582
team_id=self._project.team_id,

0 commit comments

Comments
 (0)