Skip to content

Commit d5580d6

Browse files
committed
Update CHANGELOG.md
1 parent 137abc6 commit d5580d6

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Changelog
22
All release highlights of this project will be documented in this file.
3-
## 4.4.2 - August 21, 2022
3+
## 4.4.2, 4.4.3 - August 21, 2022
44
### Updated
55
- the **schema** of `classes JSON` to support new values for the `"group_type"` key for a given attribute group. `"group_type": "radio" | "checklist" | "text" | "numeric"`.
66
- the **schema** of `video annotation JSON` to support instances that have a `"tag"` type.

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
import os
77
import platform
88
import re
9-
import sys
109
import time
1110
from dataclasses import dataclass
1211
from datetime import datetime

tests/integration/annotations/test_upload_annotations_from_folder_to_project.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,12 +70,12 @@ def test_upload_large_annotations(self):
7070
sa.create_annotation_classes_from_classes_json(
7171
self.PROJECT_NAME, f"{self.large_annotations_folder_path}/classes/classes.json"
7272
)
73-
uploaded, _, _ = sa.upload_annotations_from_folder_to_project(
73+
uploaded, a, b = sa.upload_annotations_from_folder_to_project(
7474
self.PROJECT_NAME, self.large_annotations_folder_path
7575
)
7676
assert len(uploaded) == 5
7777
annotations = sa.get_annotations(self.PROJECT_NAME)
78-
assert [len(annotation["instances"]) > 1 for annotation in annotations].count(True) == 4
78+
assert [len(annotation["instances"]) > 1 for annotation in annotations].count(True) == 5
7979

8080
def test_upload_big_annotations(self):
8181
sa.attach_items(

0 commit comments

Comments
 (0)