Skip to content

Commit f5a7187

Browse files
committed
Fix typo
1 parent bc182db commit f5a7187

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/superannotate/lib/app/interface/sdk_interface.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2199,8 +2199,8 @@ def upload_images_to_project(
21992199
return uploaded, failed_images, duplications
22002200
raise AppException(use_case.response.errors)
22012201

2202+
@staticmethod
22022203
def aggregate_annotations_as_df(
2203-
self,
22042204
project_root: Union[NotEmptyStr, Path],
22052205
project_type: ProjectTypes,
22062206
folder_names: Optional[List[Union[Path, NotEmptyStr]]] = None,

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ def __init__(
132132
self._subset = subset
133133

134134
def validate_query(self):
135-
if self._project.sync_status != constances.ProjectState.SYNCED.value:
135+
if self._project.sync_status != constants.ProjectState.SYNCED.value:
136136
raise AppException("Data is not synced.")
137137
if self._query:
138138
response = self._backend_client.validate_saqul_query(

0 commit comments

Comments
 (0)