Coverage for opt/mealie/lib/python3.12/site-packages/mealie/schema/recipe/recipe_notes.py: 100%
5 statements
« prev ^ index » next coverage.py v7.10.6, created at 2025-11-25 15:48 +0000
« prev ^ index » next coverage.py v7.10.6, created at 2025-11-25 15:48 +0000
1from pydantic import BaseModel, ConfigDict 1a
4class RecipeNote(BaseModel): 1a
5 title: str 1a
6 text: str 1a
7 model_config = ConfigDict(from_attributes=True) 1a