Skip to content

Commit

Permalink
fix: run black
Browse files Browse the repository at this point in the history
  • Loading branch information
joel@joellee.org committed Jan 6, 2023
1 parent dd72fd6 commit 42a9ed3
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 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 @@ -16,7 +16,7 @@
RequestMethod,
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 42a9ed3

Please sign in to comment.