From 9af2752b9208572275a7751ade3c4cfb57275e71 Mon Sep 17 00:00:00 2001 From: "deepsource-autofix[bot]" <62050782+deepsource-autofix[bot]@users.noreply.github.com> Date: Wed, 24 Feb 2021 05:56:26 +0000 Subject: [PATCH] Remove unused imports --- shub/plugins/saml_auth/urls.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shub/plugins/saml_auth/urls.py b/shub/plugins/saml_auth/urls.py index 449a4b95..40a7a9e0 100644 --- a/shub/plugins/saml_auth/urls.py +++ b/shub/plugins/saml_auth/urls.py @@ -8,7 +8,7 @@ """ -from django.conf.urls import include, url +from django.conf.urls import url import shub.plugins.saml_auth.views as views urlpatterns = [url(r"^saml.xml$", views.saml_metadata_view, name="samlxml")]