fix imports+
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2022-02-13 20:52:51 +01:00
parent 9c31bb2611
commit 388ec47078
4 changed files with 5 additions and 5 deletions

View File

@ -1,6 +1,6 @@
#!/usr/bin/env python3
from .marshm import ma
from ..model import Ingredient
from model import Ingredient
class IngredientSchema(ma.ModelSchema):

View File

@ -1,6 +1,6 @@
#!/usr/bin/env python3
from .marshm import ma
from ..model import Meal
from model import Meal
from .ingredientschema import IngredientSchema