From 0d1141a0a3ad64ce05b0f7f546d266efc1433248 Mon Sep 17 00:00:00 2001 From: Jim Martens Date: Wed, 19 Feb 2020 12:59:31 +0100 Subject: [PATCH] Added missing empty line --- food_planner/models.py | 1 + 1 file changed, 1 insertion(+) diff --git a/food_planner/models.py b/food_planner/models.py index e5d8aa0..cef61fc 100644 --- a/food_planner/models.py +++ b/food_planner/models.py @@ -111,6 +111,7 @@ class UsedIngredients(models.Model): help_text=_('Please specify the used amount of the ingredient')) unit = models.CharField(_('Unit for amount'), max_length=10, choices=MEASUREMENT_UNITS) + class Vendor(models.Model): name = models.CharField(_('Vendor'), max_length=50)