Skip to content

Commit eea979c

Browse files
committed
fix test
1 parent 42cd824 commit eea979c

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

src/superannotate/lib/infrastructure/controller.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -726,7 +726,7 @@ def search_annotation_classes(self, project_name: str, name_prefix: str = None):
726726
classes=AnnotationClassRepository(
727727
service=self._backend_client, project=project_entity
728728
),
729-
condition=condition
729+
condition=condition,
730730
)
731731
return use_case.execute()
732732

src/superannotate/lib/infrastructure/services.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import os
21
from contextlib import contextmanager
32
from datetime import datetime
43
from typing import Dict
@@ -27,7 +26,9 @@ class BaseBackendService(SuerannotateServiceProvider):
2726
Base service class
2827
"""
2928

30-
def __init__(self, api_url: str, auth_token: str, logger, paginate_by=None, verify_ssl=True):
29+
def __init__(
30+
self, api_url: str, auth_token: str, logger, paginate_by=None, verify_ssl=True
31+
):
3132
self.api_url = api_url
3233
self._auth_token = auth_token
3334
self.logger = logger

0 commit comments

Comments
 (0)