We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2db7c76 commit eca5261Copy full SHA for eca5261
2 files changed
src/superannotate/__init__.py
@@ -1,7 +1,7 @@
1
import os
2
import sys
3
4
-__version__ = "4.4.2dev10"
+__version__ = "4.4.2dev11"
5
6
sys.path.append(os.path.split(os.path.realpath(__file__))[0])
7
src/superannotate/lib/infrastructure/services.py
@@ -82,11 +82,7 @@ def __init__(
82
@property
83
def assets_provider_url(self):
84
if self.api_url != constance.BACKEND_URL:
85
- # return "http://ec2-18-237-224-179.us-west-2.compute.amazonaws.com:3009/api/v1.01/"
86
- return (
87
- "https://sa-assets-provider.us-west-2.elasticbeanstalk.com/api/v1.01/"
88
- )
89
- # return "https://assets-provider.devsuperannotate.com/api/v1.01/"
+ return "https://assets-provider.devsuperannotate.com/api/v1.01/"
90
return "https://assets-provider.superannotate.com/api/v1/"
91
92
@lru_cache(maxsize=32)
0 commit comments