From 74a8a28c52033c4f3f395ef01a9a29f148a3fcce Mon Sep 17 00:00:00 2001 From: "M.Ravi" Date: Thu, 22 Feb 2018 18:20:12 +0100 Subject: [PATCH] Reorganize imports and fix flake8 error --- datacenterlight/urls.py | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/datacenterlight/urls.py b/datacenterlight/urls.py index b2aab8de..a93a24d0 100644 --- a/datacenterlight/urls.py +++ b/datacenterlight/urls.py @@ -1,12 +1,10 @@ from django.conf.urls import url - -from .views import ( - IndexView, LandingProgramView,PaymentOrderView, OrderConfirmationView, - WhyDataCenterLightView, ContactUsView -) - from django.views.generic import TemplateView +from .views import ( + IndexView, LandingProgramView, PaymentOrderView, OrderConfirmationView, + WhyDataCenterLightView, ContactUsView +) urlpatterns = [ url(r'^$', IndexView.as_view(), name='index'),