From c877427c317938ebd7a50be4ef8b8d9503d9d78e Mon Sep 17 00:00:00 2001 From: ryoKaz Date: Mon, 6 Dec 2021 10:23:07 +0900 Subject: [PATCH 1/3] fix type decralation --- fastlabel/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fastlabel/__init__.py b/fastlabel/__init__.py index 1f6cf1a..8e6e946 100644 --- a/fastlabel/__init__.py +++ b/fastlabel/__init__.py @@ -639,7 +639,7 @@ def update_image_task( status: str = None, external_status: str = None, tags: list = [], - annotations: list[dict] = [], + annotations: list = [], **kwargs, ) -> str: """ From 6ce84d4859020e0755d682a0bc3352d763d571d6 Mon Sep 17 00:00:00 2001 From: ryoKaz Date: Mon, 6 Dec 2021 10:24:14 +0900 Subject: [PATCH 2/3] fix version --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index bcf9fc4..0243625 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ setuptools.setup( name="fastlabel", - version="0.11.10", + version="0.11.11", author="eisuke-ueta", author_email="eisuke.ueta@fastlabel.ai", description="The official Python SDK for FastLabel API, the Data Platform for AI", From 6c5393de97c965a5fa4bba47bc8b4712d40811e5 Mon Sep 17 00:00:00 2001 From: ryoKaz Date: Wed, 8 Dec 2021 09:34:50 +0900 Subject: [PATCH 3/3] fix --- fastlabel/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fastlabel/__init__.py b/fastlabel/__init__.py index 8e6e946..f02b358 100644 --- a/fastlabel/__init__.py +++ b/fastlabel/__init__.py @@ -639,7 +639,7 @@ def update_image_task( status: str = None, external_status: str = None, tags: list = [], - annotations: list = [], + annotations: List[dict] = [], **kwargs, ) -> str: """