[fiber] fix
Some checks are pending
Python lint and test / linttest (push) Waiting to run

This commit is contained in:
Piotr Domański 2026-04-01 23:47:23 +02:00
parent 2123f55eab
commit 37af9f3943

View file

@ -58,7 +58,7 @@ class Diary(Base, CommonMixin):
:rtype: float
"""
return sum(meal.fat for meal in self.meals)
return sum(meal.fiber for meal in self.meals)
@classmethod
def query(cls, user_id: int) -> Select: