Skip to content

Commit a36b443

Browse files
committed
Interface fix
1 parent 40f5f58 commit a36b443

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ def __init__(self, token: str = None, config_path: str = None):
4141
self.controller = Controller(_token, _host, _ssl_verify, version)
4242

4343
def __new__(cls, *args, **kwargs):
44-
obj = super().__new__(cls, *args, **kwargs)
44+
obj = super().__new__(cls)
4545
cls.REGISTRY.append(obj)
4646
return obj
4747

src/superannotate/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "4.3.5dev12"
1+
__version__ = "4.3.5dev13"

0 commit comments

Comments
 (0)