We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 118862e commit ea00e58Copy full SHA for ea00e58
tests/test_storage.py
@@ -8,7 +8,7 @@
8
9
if TYPE_CHECKING:
10
from pathlib import Path
11
- from typing import Any, Dict, List, Callable
+ from typing import Any, Callable, Dict, List
12
13
from supabase import Client, StorageFileAPI, SupabaseStorageClient
14
@@ -54,7 +54,9 @@ def finalizer():
54
55
56
@pytest.fixture(scope="module")
57
-def bucket(storage_client: SupabaseStorageClient, uuid_factory: Callable[[], str]) -> str:
+def bucket(
58
+ storage_client: SupabaseStorageClient, uuid_factory: Callable[[], str]
59
+) -> str:
60
"""Creates a test bucket which will be used in the whole storage tests run and deleted at the end"""
61
bucket_id = uuid_factory()
62
storage_client.create_bucket(id=bucket_id)
0 commit comments