We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e135c40 + 1d35d37 commit aac400dCopy full SHA for aac400d
roboflow/__init__.py
@@ -15,7 +15,7 @@
15
from roboflow.models import CLIPModel, GazeModel # noqa: F401
16
from roboflow.util.general import write_line
17
18
-__version__ = "1.1.35"
+__version__ = "1.1.36"
19
20
21
def check_key(api_key, model, notebook, num_retries=0):
@@ -239,8 +239,7 @@ def workspace(self, the_workspace=None):
239
the_workspace = self.current_workspace
240
241
if self.api_key: # Check if api_key was passed during __init__
242
- workspace_api_key = load_roboflow_api_key(the_workspace)
243
- api_key = workspace_api_key or self.api_key
+ api_key = self.api_key
244
list_projects = rfapi.get_workspace(api_key, the_workspace)
245
return Workspace(list_projects, api_key, the_workspace, self.model_format)
246
0 commit comments