Reorganize imports and fix flake8 error
This commit is contained in:
parent
35d6fd8fd3
commit
74a8a28c52
1 changed files with 4 additions and 6 deletions
|
@ -1,12 +1,10 @@
|
||||||
from django.conf.urls import url
|
from django.conf.urls import url
|
||||||
|
|
||||||
from .views import (
|
|
||||||
IndexView, LandingProgramView,PaymentOrderView, OrderConfirmationView,
|
|
||||||
WhyDataCenterLightView, ContactUsView
|
|
||||||
)
|
|
||||||
|
|
||||||
from django.views.generic import TemplateView
|
from django.views.generic import TemplateView
|
||||||
|
|
||||||
|
from .views import (
|
||||||
|
IndexView, LandingProgramView, PaymentOrderView, OrderConfirmationView,
|
||||||
|
WhyDataCenterLightView, ContactUsView
|
||||||
|
)
|
||||||
|
|
||||||
urlpatterns = [
|
urlpatterns = [
|
||||||
url(r'^$', IndexView.as_view(), name='index'),
|
url(r'^$', IndexView.as_view(), name='index'),
|
||||||
|
|
Loading…
Reference in a new issue