diff --git a/storage3/_sync/bucket.py b/storage3/_sync/bucket.py index 3782fe07..5780776c 100644 --- a/storage3/_sync/bucket.py +++ b/storage3/_sync/bucket.py @@ -5,7 +5,7 @@ from httpx import HTTPError, Response from ..types import CreateOrUpdateBucketOptions, RequestMethod -from ..utils import SyncClient, StorageException +from ..utils import StorageException, SyncClient from .file_api import SyncBucket __all__ = ["SyncStorageBucketAPI"] diff --git a/storage3/_sync/file_api.py b/storage3/_sync/file_api.py index 2a1c23c6..eaadbcbc 100644 --- a/storage3/_sync/file_api.py +++ b/storage3/_sync/file_api.py @@ -19,7 +19,7 @@ SignedUploadURL, TransformOptions, ) -from ..utils import SyncClient, StorageException +from ..utils import StorageException, SyncClient __all__ = ["SyncBucket"] diff --git a/tests/_sync/test_client.py b/tests/_sync/test_client.py index 5ac6b3fe..f897dcf5 100644 --- a/tests/_sync/test_client.py +++ b/tests/_sync/test_client.py @@ -79,9 +79,7 @@ def bucket(storage: SyncStorageClient, uuid_factory: Callable[[], str]) -> str: @pytest.fixture(scope="module") -def public_bucket( - storage: SyncStorageClient, uuid_factory: Callable[[], str] -) -> str: +def public_bucket(storage: SyncStorageClient, uuid_factory: Callable[[], str]) -> str: """Creates a test public bucket which will be used in the whole storage tests run and deleted at the end""" bucket_id = uuid_factory()