Skip to content

Commit e491153

Browse files
committed
Merge develop
2 parents 06cb39b + 903736e commit e491153

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1062,7 +1062,7 @@ def execute(self):
10621062
if invited:
10631063
self.reporter.log_info(
10641064
f"Sent team {'admin' if self._set_admin else 'contributor'} invitations"
1065-
f" to {len(to_add)}/{len(self._emails)} users."
1065+
f" to {len(invited)}/{len(self._emails)} users."
10661066
)
10671067
if failed:
10681068
to_skip = set(to_skip)

src/superannotate/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "4.2.8b14"
1+
__version__ = "4.2.9b2"

tests/integration/annotations/test_text_annotation_upload.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ def test_document_annotation_upload_invalid_json(self):
5858
self.assertEqual(len(failed_annotations), 1)
5959
self.assertEqual(len(missing_annotations), 0)
6060
self.assertIn("Couldn't validate 1/1 annotations", self._caplog.text)
61+
self.assertIn("Use the validate_annotations function to discover the possible reason(s) for which an annotation is invalid.", self._caplog.text)
6162

6263
def test_text_annotation_upload(self):
6364
sa.create_annotation_classes_from_classes_json(self.PROJECT_NAME, self.classes_path)

0 commit comments

Comments
 (0)