Skip to content

Commit f607bcf

Browse files
committed
Update __init__.py
1 parent 5c7b702 commit f607bcf

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

src/superannotate/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import os
22
import sys
33

4-
__version__ = "4.4.1dev8"
4+
__version__ = "4.4.1dev10"
55

66
sys.path.append(os.path.split(os.path.realpath(__file__))[0])
77

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
from lib.infrastructure.controller import Controller
1717
from lib.infrastructure.repositories import ConfigRepository
1818
from mixpanel import Mixpanel
19-
from version import __version__
19+
from superannotate import __version__
2020

2121

2222
class BaseInterfaceFacade:

src/superannotate/lib/infrastructure/services.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
from lib.infrastructure.helpers import timed_lru_cache
2929
from lib.infrastructure.stream_data_handler import StreamedAnnotations
3030
from requests.exceptions import HTTPError
31-
from superannotate.version import __version__
31+
from superannotate import __version__
3232

3333
requests.packages.urllib3.disable_warnings()
3434

@@ -1279,7 +1279,7 @@ def upload_custom_fields(
12791279
self.api_url, self.URL_UPLOAD_CUSTOM_VALUE.format(project_id=project_id)
12801280
),
12811281
"post",
1282-
params=dict(team_id=team_id, fodler_id=folder_id),
1282+
params=dict(team_id=team_id, folder_id=folder_id),
12831283
data=dict(data=dict(ChainMap(*items))),
12841284
content_type=UploadCustomFieldValues,
12851285
)
@@ -1298,7 +1298,7 @@ def delete_custom_fields(
12981298
self.api_url, self.URL_UPLOAD_CUSTOM_VALUE.format(project_id=project_id)
12991299
),
13001300
"delete",
1301-
params=dict(team_id=team_id, fodler_id=folder_id),
1301+
params=dict(team_id=team_id, folder_id=folder_id),
13021302
data=dict(data=dict(ChainMap(*items))),
13031303
content_type=ServiceResponse,
13041304
)

0 commit comments

Comments
 (0)