Skip to content
This repository was archived by the owner on Sep 8, 2025. It is now read-only.

Commit ef32ae7

Browse files
chore: set TransformOptions to None
1 parent f0c8fdc commit ef32ae7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

storage3/_async/file_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ async def create_signed_url(
7474
] = f"{self._client.base_url}{cast(str, data['signedURL']).lstrip('/')}"
7575
return data
7676

77-
async def get_public_url(self, path: str, options: TransformOptions = {}) -> str:
77+
async def get_public_url(self, path: str, options: TransformOptions = None) -> str:
7878
"""
7979
Parameters
8080
----------

storage3/_sync/file_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ def create_signed_url(
7474
] = f"{self._client.base_url}{cast(str, data['signedURL']).lstrip('/')}"
7575
return data
7676

77-
def get_public_url(self, path: str, options: TransformOptions = {}) -> str:
77+
def get_public_url(self, path: str, options: TransformOptions = None) -> str:
7878
"""
7979
Parameters
8080
----------

0 commit comments

Comments
 (0)