fix(recipes): corrected model import

main
Jonathan Peacher 2023-06-22 15:48:54 -05:00
rodzic 986d015e99
commit 70d268d742
Nie znaleziono w bazie danych klucza dla tego podpisu
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -1,7 +1,7 @@
from django.contrib import admin
from django.db.models import Sum
from django.http import HttpResponse
from .views import Aisle, Unit, Recipe, Ingredient
from .models import Aisle, Unit, Recipe, Ingredient
@admin.register(Unit)