From 29c15708afec806d0a0dc3c706070c3d3ffb0194 Mon Sep 17 00:00:00 2001 From: Ventsislav Tashev Date: Sun, 27 Oct 2019 16:02:23 +0200 Subject: [PATCH] Replaced `odin` importss with `project` --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index e63f49d..8ced915 100644 --- a/README.md +++ b/README.md @@ -193,10 +193,10 @@ from datetime import timedelta from django.test import TestCase from django.core.exceptions import ValidationError -from odin.common.utils import get_now +from project.common.utils import get_now -from odin.education.factories import CourseFactory -from odin.education.models import Course +from project.education.factories import CourseFactory +from project.education.models import Course class CourseTests(TestCase):