mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-11-27 06:04:14 -05:00
fix: Upgrade Black (#3057)
* bump black * bump black on precommit * run black * fix backend test runner
This commit is contained in:
@@ -13,20 +13,16 @@ class ABCMultiTenantTestCase(ABC):
|
||||
self.items: list = []
|
||||
|
||||
@abstractmethod
|
||||
def seed_action(self, group_id: str) -> set[int] | set[str]:
|
||||
...
|
||||
def seed_action(self, group_id: str) -> set[int] | set[str]: ...
|
||||
|
||||
@abstractmethod
|
||||
def seed_multi(self, group1_id: str, group2_id: str) -> tuple[set[str], set[str]]:
|
||||
...
|
||||
def seed_multi(self, group1_id: str, group2_id: str) -> tuple[set[str], set[str]]: ...
|
||||
|
||||
@abstractmethod
|
||||
def get_all(self, token: str) -> Response:
|
||||
...
|
||||
def get_all(self, token: str) -> Response: ...
|
||||
|
||||
@abstractmethod
|
||||
def cleanup(self) -> None:
|
||||
...
|
||||
def cleanup(self) -> None: ...
|
||||
|
||||
def __enter__(self):
|
||||
pass
|
||||
|
||||
Reference in New Issue
Block a user