From 67fa4cc1197d2984497a3bbbc1193ff632ec0fb3 Mon Sep 17 00:00:00 2001 From: Matthias Date: Sat, 20 Nov 2021 13:44:31 +0100 Subject: [PATCH] PEP fix --- InvenTree/InvenTree/helpers.py | 2 -- InvenTree/plugin/apps.py | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/InvenTree/InvenTree/helpers.py b/InvenTree/InvenTree/helpers.py index 2b511bc09f..9dd32c694f 100644 --- a/InvenTree/InvenTree/helpers.py +++ b/InvenTree/InvenTree/helpers.py @@ -14,8 +14,6 @@ from wsgiref.util import FileWrapper from django.http import StreamingHttpResponse from django.core.exceptions import ValidationError, FieldError from django.utils.translation import ugettext_lazy as _ -from django.conf import settings - from django.contrib.auth.models import Permission import InvenTree.version diff --git a/InvenTree/plugin/apps.py b/InvenTree/plugin/apps.py index 2d3d1d6181..9d08de75c9 100644 --- a/InvenTree/plugin/apps.py +++ b/InvenTree/plugin/apps.py @@ -9,7 +9,7 @@ from importlib import reload from django.apps import AppConfig, apps from django.conf import settings from django.db.utils import OperationalError, ProgrammingError -from django.conf.urls import url, include +from django.conf.urls import url from django.urls import clear_url_caches from django.contrib import admin from django.utils.text import slugify