diff --git a/mealie/schema/recipe/recipe_ingredient.py b/mealie/schema/recipe/recipe_ingredient.py index d95f56c5b..06c95bfb1 100644 --- a/mealie/schema/recipe/recipe_ingredient.py +++ b/mealie/schema/recipe/recipe_ingredient.py @@ -132,9 +132,6 @@ class IngredientFood(CreateIngredientFood): except AttributeError: return v - def is_on_hand(self, household_slug: str) -> bool: - return household_slug in self.households_with_tool - class IngredientFoodPagination(PaginationBase): items: list[IngredientFood] diff --git a/mealie/schema/recipe/recipe_tool.py b/mealie/schema/recipe/recipe_tool.py index 9cc8ff4f1..9c541cd05 100644 --- a/mealie/schema/recipe/recipe_tool.py +++ b/mealie/schema/recipe/recipe_tool.py @@ -32,9 +32,6 @@ class RecipeToolOut(RecipeToolCreate): except AttributeError: return v - def is_on_hand(self, household_slug: str) -> bool: - return household_slug in self.households_with_tool - @classmethod def loader_options(cls) -> list[LoaderOption]: return [