Skip to content

Commit ea00e58

Browse files
author
Dani Reinón
committed
chore: apply hooks formatting
1 parent 118862e commit ea00e58

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

tests/test_storage.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
if TYPE_CHECKING:
1010
from pathlib import Path
11-
from typing import Any, Dict, List, Callable
11+
from typing import Any, Callable, Dict, List
1212

1313
from supabase import Client, StorageFileAPI, SupabaseStorageClient
1414

@@ -54,7 +54,9 @@ def finalizer():
5454

5555

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

0 commit comments

Comments
 (0)