diff --git a/storage3/_sync/bucket.py b/storage3/_sync/bucket.py index 1dbfd81b..efbd6cd8 100644 --- a/storage3/_sync/bucket.py +++ b/storage3/_sync/bucket.py @@ -5,7 +5,7 @@ from httpx import HTTPError, Response from ..types import 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 38ea28ce..0e8cca5e 100644 --- a/storage3/_sync/file_api.py +++ b/storage3/_sync/file_api.py @@ -16,7 +16,7 @@ RequestMethod, 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 30154626..d3622128 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()