mirror of
https://github.com/mealie-recipes/mealie.git
synced 2026-02-16 04:43:13 -05:00
* switch to ruff * add ruff * run ruff --fix * update ruff * resolve ruff errors * drop isort from CI * fix decorator order
12 lines
250 B
Python
12 lines
250 B
Python
from pydantic import UUID4
|
|
|
|
from mealie.schema._mealie import MealieModel
|
|
|
|
from .group_preferences import UpdateGroupPreferences
|
|
|
|
|
|
class GroupAdminUpdate(MealieModel):
|
|
id: UUID4
|
|
name: str
|
|
preferences: UpdateGroupPreferences | None = None
|