Skip to content
This repository was archived by the owner on Sep 8, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion storage3/_async/file_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ async def get_public_url(self, path: str) -> str:
file path, including the path and file name. For example `folder/image.png`.
"""
_path = self._get_final_path(path)
return f"{self._client.base_url}/object/public/{_path}"
return f"{self._client.base_url}object/public/{_path}"

async def move(self, from_path: str, to_path: str) -> dict[str, str]:
"""
Expand Down
2 changes: 1 addition & 1 deletion storage3/_sync/file_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ def get_public_url(self, path: str) -> str:
file path, including the path and file name. For example `folder/image.png`.
"""
_path = self._get_final_path(path)
return f"{self._client.base_url}/object/public/{_path}"
return f"{self._client.base_url}object/public/{_path}"

def move(self, from_path: str, to_path: str) -> dict[str, str]:
"""
Expand Down