aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthew Lemon <y@yulqen.org>2024-09-10 17:42:34 +0100
committerMatthew Lemon <y@yulqen.org>2024-09-10 17:42:34 +0100
commit93f46a7dc18c26d61539f6744de811567260f58b (patch)
tree675561447b6e2ef30d9466aa8d3e9f95cb75f435
parentb17cb510c32e22c59e0140c2f2d90cf6ccbed361 (diff)
Replace relative imports with absolute
-rw-r--r--pyblackbird_cc/resources/tests/test_views.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/pyblackbird_cc/resources/tests/test_views.py b/pyblackbird_cc/resources/tests/test_views.py
index e85dd9f..87b9fc0 100644
--- a/pyblackbird_cc/resources/tests/test_views.py
+++ b/pyblackbird_cc/resources/tests/test_views.py
@@ -10,11 +10,11 @@ from django.test import RequestFactory
from django.test import TestCase
from django.urls import reverse
-from .. import services
-from ..forms import ResourceCreateForm
-from ..models import ResourceCategory
-from ..models import ResourceType
-from ..views import create_resource
+from pyblackbird_cc.resources import services
+from pyblackbird_cc.resources.forms import ResourceCreateForm
+from pyblackbird_cc.resources.models import ResourceCategory
+from pyblackbird_cc.resources.models import ResourceType
+from pyblackbird_cc.resources.views import create_resource
pytestmark = pytest.mark.django_db