Skip to content

Commit

Permalink
fix types
Browse files Browse the repository at this point in the history
  • Loading branch information
codekansas committed Sep 4, 2024
1 parent 9f8ad22 commit b5ff13f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions kscale/store/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,5 @@ def __init__(
async def urdf(self, artifact_id: str) -> Path:
return await download_urdf(artifact_id)

async def upload_urdf(self, listing_id: str, file_path: str) -> UploadArtifactResponse:
return await upload_urdf(listing_id, file_path)
async def upload_urdf(self, listing_id: str, root_dir: Path) -> UploadArtifactResponse:
return await upload_urdf(listing_id, root_dir)

0 comments on commit b5ff13f

Please sign in to comment.