We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 722627f commit 2cf349dCopy full SHA for 2cf349d
src/superannotate/lib/core/usecases/annotations.py
@@ -573,7 +573,10 @@ def get_annotation_from_s3(bucket, path: str):
573
574
def prepare_annotation(self, annotation: dict, size) -> dict:
575
errors = None
576
- if size < BIG_FILE_THRESHOLD and self._project.type < constants.ProjectType.PIXEL.value:
+ if (
577
+ size < BIG_FILE_THRESHOLD
578
+ and self._project.type < constants.ProjectType.PIXEL.value
579
+ ):
580
use_case = ValidateAnnotationUseCase(
581
reporter=self.reporter,
582
team_id=self._project.team_id,
0 commit comments