diff --git a/default/forms.py b/default/forms.py index a86ae1f..fcbc82d 100644 --- a/default/forms.py +++ b/default/forms.py @@ -1,5 +1,4 @@ from django import forms -from django.core.cache import cache from django.utils.translation import gettext_lazy as _ from default.util import ocds_tags diff --git a/default/util.py b/default/util.py index 2930008..a54dae7 100644 --- a/default/util.py +++ b/default/util.py @@ -1,5 +1,6 @@ import json +from django.core.cache import cache from django.http import JsonResponse from django.shortcuts import render from django.utils.translation import gettext_lazy as _ diff --git a/tests/test_google_drive.py b/tests/test_google_drive.py index 0c880a3..30f81ee 100644 --- a/tests/test_google_drive.py +++ b/tests/test_google_drive.py @@ -1,6 +1,5 @@ import json from datetime import datetime - from unittest.mock import patch from tests import ViewTestCase, ViewTests