Skip to content

Commit

Permalink
chore: apply hooks formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
Dani Reinón committed Feb 3, 2022
1 parent 118862e commit ea00e58
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions tests/test_storage.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

if TYPE_CHECKING:
from pathlib import Path
from typing import Any, Dict, List, Callable
from typing import Any, Callable, Dict, List

from supabase import Client, StorageFileAPI, SupabaseStorageClient

Expand Down Expand Up @@ -54,7 +54,9 @@ def finalizer():


@pytest.fixture(scope="module")
def bucket(storage_client: SupabaseStorageClient, uuid_factory: Callable[[], str]) -> str:
def bucket(
storage_client: SupabaseStorageClient, uuid_factory: Callable[[], str]
) -> str:
"""Creates a test bucket which will be used in the whole storage tests run and deleted at the end"""
bucket_id = uuid_factory()
storage_client.create_bucket(id=bucket_id)
Expand Down

0 comments on commit ea00e58

Please sign in to comment.