Skip to content

Commit 42a9ed3

Browse files
fix: run black
1 parent dd72fd6 commit 42a9ed3

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

storage3/_sync/bucket.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
from httpx import HTTPError, Response
66

77
from ..types import 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

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
RequestMethod,
1717
TransformOptions,
1818
)
19-
from ..utils import SyncClient, StorageException
19+
from ..utils import StorageException, SyncClient
2020

2121
__all__ = ["SyncBucket"]
2222

tests/_sync/test_client.py

+1-3
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)