Remove unused imports.

This commit is contained in:
Hasan Ramezani 2019-07-09 12:14:15 +02:00 committed by Aleksi Häkli
parent 0a708ae3ea
commit 0f3b3527be
4 changed files with 1 additions and 8 deletions

View file

@ -1,6 +1,3 @@
import os.path
import tempfile
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',

View file

@ -1,7 +1,5 @@
from unittest.mock import patch
from django.contrib.auth import authenticate
from django.http import HttpRequest
from django.test import override_settings
from django.urls import reverse

View file

@ -12,7 +12,7 @@ from django.urls import reverse
from django.contrib.auth import get_user_model, login, logout
from axes.conf import settings
from axes.models import AccessLog, AccessAttempt
from axes.models import AccessAttempt
from axes.tests.base import AxesTestCase

View file

@ -1,5 +1,3 @@
from unittest.mock import patch, MagicMock
from django.http import HttpResponse, HttpRequest
from axes.middleware import AxesMiddleware