Skip to content

Commit 9149b79

Browse files
committed
Initial changes
1 parent b427b21 commit 9149b79

File tree

10 files changed

+908
-800
lines changed

10 files changed

+908
-800
lines changed

requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,3 +20,4 @@ setuptools~=57.4.0
2020
aiohttp==3.8.1
2121
email-validator>=1.0.3
2222
nest-asyncio==1.5.4
23+
jsonschema==3.2.0

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ def __init__(
3636
elif env_token:
3737
host = os.environ.get("SA_URL", constants.BACKEND_URL)
3838

39-
token = Controller.validate_token(env_token)
39+
token = Controller.valdate_token(env_token)
4040
else:
4141
config_path = os.path.expanduser(str(config_path))
4242
if not Path(config_path).is_file() or not os.access(config_path, os.R_OK):

0 commit comments

Comments
 (0)