From 76a65371cea8f9ba7b836de58cef8e9d0e63047c Mon Sep 17 00:00:00 2001 From: Daniel Cortes Date: Sun, 28 Jun 2020 17:27:35 -0400 Subject: [PATCH] Corregida Issue #11 --- lists/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lists/models.py b/lists/models.py index afb9a89..040fdad 100644 --- a/lists/models.py +++ b/lists/models.py @@ -1,5 +1,5 @@ """Definición de los modelos que utilizara la aplicación Lists""" -from django.contrib.auth.models import User +from users.models import User from django.db.models import CharField, TextField, IntegerField from django.db.models import ForeignKey, ManyToManyField from django.db.models import CASCADE