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

Commit 14be266

Browse files
chore: run black
1 parent 98aae1c commit 14be266

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

storage3/_sync/bucket.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
from httpx import HTTPError, Response
66

77
from ..types import CreateOrUpdateBucketOptions, RequestMethod
8-
from ..utils import SyncClient, StorageException
8+
from ..utils import StorageException, SyncClient
99
from .file_api import SyncBucket
1010

1111
__all__ = ["SyncStorageBucketAPI"]

storage3/_sync/file_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
SignedUploadURL,
2020
TransformOptions,
2121
)
22-
from ..utils import SyncClient, StorageException
22+
from ..utils import StorageException, SyncClient
2323

2424
__all__ = ["SyncBucket"]
2525

tests/_sync/test_client.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -79,9 +79,7 @@ def bucket(storage: SyncStorageClient, uuid_factory: Callable[[], str]) -> str:
7979

8080

8181
@pytest.fixture(scope="module")
82-
def public_bucket(
83-
storage: SyncStorageClient, uuid_factory: Callable[[], str]
84-
) -> str:
82+
def public_bucket(storage: SyncStorageClient, uuid_factory: Callable[[], str]) -> str:
8583
"""Creates a test public bucket which will be used in the whole storage tests run and deleted at the end"""
8684
bucket_id = uuid_factory()
8785

0 commit comments

Comments
 (0)