Reorganize imports and fix flake8 error

This commit is contained in:
M.Ravi 2018-02-22 18:20:12 +01:00
parent 35d6fd8fd3
commit 74a8a28c52
1 changed files with 4 additions and 6 deletions

View File

@ -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'),