Skip to content

Commit

Permalink
feat: allow editors to update project data (#50)
Browse files Browse the repository at this point in the history
  • Loading branch information
Sparkier authored Jan 3, 2024
1 parent b511c99 commit a920cfa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "zeno-client"
version = "0.1.15"
version = "0.1.16"
description = "Python client for creating new Zeno projects and uploading data."
authors = ["Zeno Team <[email protected]>"]
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion zeno_client/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -398,7 +398,7 @@ def get_project(self, owner_name: str, project_name: str) -> ZenoProject:
user = quote(owner_name, safe="!~*'()")
project = quote(project_name, safe="!~*'()")
response = requests.get(
f"{self.endpoint}/api/project-uuid/{user}/{project}",
f"{self.endpoint}/api/project-by-name/{user}/{project}",
headers={"Authorization": "Bearer " + self.api_key},
verify=True,
)
Expand Down

0 comments on commit a920cfa

Please sign in to comment.