Skip to content

Commit 096c869

Browse files
committed
Added instructions_link handeling
1 parent e625f2f commit 096c869

File tree

15 files changed

+320
-286
lines changed

15 files changed

+320
-286
lines changed

docs/source/superannotate.sdk.rst

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,6 +182,22 @@ Export metadata example:
182182
}
183183
184184
185+
----------
186+
187+
Integration metadata
188+
_______________
189+
190+
Integration metadata example:
191+
192+
.. code-block:: python
193+
194+
{
195+
"name": "My S3 Bucket",
196+
"type": "aws",
197+
"root": "test-openseadragon-1212"
198+
}
199+
200+
185201
----------
186202

187203
Item metadata
@@ -193,7 +209,7 @@ Item metadata example:
193209
194210
{
195211
"name": "example.jpeg",
196-
"path": "project/folder_1/meow.jpeg", // <proj>/<folder>/<item name>
212+
"path": "project/folder_1/meow.jpeg",
197213
"url": "https://sa-public-files.s3.../text_file_example_1.jpeg",
198214
"annotation_status": "NotStarted",
199215
"annotator_name": None,

src/superannotate/lib/app/analytics/aggregators.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ def aggregate_video_annotations_as_df(self, annotation_paths: List[str]):
143143
raw_data.videoStatus = annotation_data["metadata"].get("status")
144144
raw_data.videoUrl = annotation_data["metadata"].get("url")
145145
raw_data.videoDuration = annotation_data["metadata"].get("duration")
146-
# todo check
146+
147147
raw_data.videoError = annotation_data["metadata"].get("error")
148148
raw_data.videoAnnotator = annotation_data["metadata"].get("annotatorEmail")
149149
raw_data.videoQA = annotation_data["metadata"].get("qaEmail")

0 commit comments

Comments
 (0)