Skip to content

Commit d70d892

Browse files
committed
fix os path bug
1 parent eebfee0 commit d70d892

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

roboflow/core/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -402,7 +402,7 @@ def deploy(self, model_type: str, model_path: str) -> None:
402402

403403
res = requests.put(
404404
res.json()["url"],
405-
data=open(os.path.join(model_path + "roboflow_deploy.zip", "rb")),
405+
data=open(os.path.join(model_path + "roboflow_deploy.zip"), "rb")),
406406
)
407407
try:
408408
res.raise_for_status()

0 commit comments

Comments
 (0)