From ea00e589c496095417105b044a8ddadd0a8d023c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dani=20Rein=C3=B3n?= Date: Thu, 3 Feb 2022 11:20:05 +0100 Subject: [PATCH] chore: apply hooks formatting --- tests/test_storage.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/tests/test_storage.py b/tests/test_storage.py index c8a02654..d91cd89c 100644 --- a/tests/test_storage.py +++ b/tests/test_storage.py @@ -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 @@ -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)