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.
1 parent f8116b5 commit 38e9147Copy full SHA for 38e9147
roboflow/core/workspace.py
@@ -590,7 +590,7 @@ def deploy_model(
590
raise ValueError("At least one project ID must be provided")
591
592
# Validate if provided project URLs belong to user's projects
593
- user_projects = set(project.split('/')[-1] for project in self.projects())
+ user_projects = set(project.split("/")[-1] for project in self.projects())
594
for project_id in project_ids:
595
if project_id not in user_projects:
596
raise ValueError(f"Project {project_id} is not accessible in this workspace")
0 commit comments