Skip to content

Commit 4b96b1e

Browse files
committed
Beta feature warning
1 parent 8f4c4bf commit 4b96b1e

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

superannotate/input_converters/converters/supervisely_converters/supervisely_converter.py

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,16 @@
1-
from pathlib import Path
21
import json
2+
import logging
33
import time
4+
from pathlib import Path
5+
6+
logger = logging.getLogger("superannotate-python-sdk")
47

58

6-
class SuperviselyConverter(object):
9+
class SuperviselyConverter():
710
def __init__(self, args):
11+
logger.warning(
12+
"Beta feature. Supervisely to SuperAnnotate annotation format converter is in BETA state."
13+
)
814

915
self.dataset_name = args.dataset_name
1016
self.project_type = args.project_type
@@ -54,4 +60,4 @@ def dump_output(self, classes, files_dict):
5460
if self.platform == 'Web':
5561
self.save_web_format(classes, files_dict)
5662
else:
57-
self.save_desktop_format(classes, files_dict)
63+
self.save_desktop_format(classes, files_dict)

0 commit comments

Comments
 (0)