Skip to content

Commit

Permalink
chore: run black
Browse files Browse the repository at this point in the history
  • Loading branch information
joel@joellee.org committed Sep 15, 2023
1 parent 98aae1c commit 14be266
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion storage3/_sync/bucket.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
Expand Down
2 changes: 1 addition & 1 deletion storage3/_sync/file_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
SignedUploadURL,
TransformOptions,
)
from ..utils import SyncClient, StorageException
from ..utils import StorageException, SyncClient

__all__ = ["SyncBucket"]

Expand Down
4 changes: 1 addition & 3 deletions tests/_sync/test_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()

Expand Down

0 comments on commit 14be266

Please sign in to comment.