|
1 | | -import logging.config |
2 | 1 | import os |
3 | 2 | import sys |
| 3 | +sys.path.append(os.path.split(os.path.realpath(__file__))[0]) |
4 | 4 |
|
5 | | -import requests |
6 | | -from packaging.version import parse |
7 | | -from superannotate.lib.app.analytics.class_analytics import class_distribution |
8 | | -from superannotate.lib.app.exceptions import AppException |
9 | | -from superannotate.lib.app.input_converters.conversion import convert_json_version |
10 | | -from superannotate.lib.app.input_converters.conversion import convert_project_type |
11 | | -from superannotate.lib.app.input_converters.conversion import export_annotation |
12 | | -from superannotate.lib.app.input_converters.conversion import import_annotation |
13 | | -from superannotate.lib.app.interface.sdk_interface import SAClient |
14 | | -from superannotate.lib.core import PACKAGE_VERSION_INFO_MESSAGE |
15 | | -from superannotate.lib.core import PACKAGE_VERSION_MAJOR_UPGRADE |
16 | | -from superannotate.lib.core import PACKAGE_VERSION_UPGRADE |
17 | | -from superannotate.logger import get_default_logger |
18 | | -from superannotate.version import __version__ |
19 | | - |
| 5 | +import logging.config # noqa |
| 6 | +import requests # noqa |
| 7 | +from packaging.version import parse # noqa |
| 8 | +from superannotate.lib.app.analytics.class_analytics import class_distribution # noqa |
| 9 | +from superannotate.lib.app.exceptions import AppException # noqa |
| 10 | +from superannotate.lib.app.input_converters.conversion import convert_json_version # noqa |
| 11 | +from superannotate.lib.app.input_converters.conversion import convert_project_type # noqa |
| 12 | +from superannotate.lib.app.input_converters.conversion import export_annotation # noqa |
| 13 | +from superannotate.lib.app.input_converters.conversion import import_annotation # noqa |
| 14 | +from superannotate.lib.app.interface.sdk_interface import SAClient # noqa |
| 15 | +from superannotate.lib.core import PACKAGE_VERSION_INFO_MESSAGE # noqa |
| 16 | +from superannotate.lib.core import PACKAGE_VERSION_MAJOR_UPGRADE # noqa |
| 17 | +from superannotate.lib.core import PACKAGE_VERSION_UPGRADE # noqa |
| 18 | +from superannotate.logger import get_default_logger # noqa |
| 19 | +from superannotate.version import __version__ # noqa |
20 | 20 |
|
21 | 21 | __all__ = [ |
22 | 22 | "__version__", |
|
34 | 34 |
|
35 | 35 | __author__ = "Superannotate" |
36 | 36 |
|
37 | | -sys.path.append(os.path.split(os.path.realpath(__file__))[0]) |
38 | 37 | logging.getLogger("botocore").setLevel(logging.CRITICAL) |
39 | 38 | logger = get_default_logger() |
40 | 39 |
|
|
0 commit comments