diff options
author | Edan Binshtok <eb578m@intl.att.com> | 2017-11-19 11:50:50 +0200 |
---|---|---|
committer | Edan Binshtok <eb578m@intl.att.com> | 2017-11-19 11:51:04 +0200 |
commit | 71891b3040605103397ffa7fb349215eced3a2c3 (patch) | |
tree | 22dda04edd1b8ee0d0de2a6a260d6d60e42cba25 /web | |
parent | 433a8256e31f755f5e236491bbe39d3db24d6d6d (diff) |
Pep8 another fixes
Add more fixes to pep8
Issue-ID: VVP-25
Change-Id: Icc3bd3977ced2b537c858a9801e04a6bf6d1db05
Signed-off-by: Edan Binshtok <eb578m@intl.att.com>
Diffstat (limited to 'web')
-rw-r--r-- | web/__init__.py | 4 | ||||
-rw-r--r-- | web/urls.py | 9 | ||||
-rw-r--r-- | web/wsgi.py | 4 |
3 files changed, 9 insertions, 8 deletions
diff --git a/web/__init__.py b/web/__init__.py index 6a22ef7..0684c18 100644 --- a/web/__init__.py +++ b/web/__init__.py @@ -1,5 +1,5 @@ -# -*- encoding: utf-8 -*- -# ============LICENSE_START======================================================= +# -*- encoding: utf-8 -*- +# ============LICENSE_START======================================================= # org.onap.vvp/test-engine # =================================================================== # Copyright © 2017 AT&T Intellectual Property. All rights reserved. diff --git a/web/urls.py b/web/urls.py index e937ac9..7881a68 100644 --- a/web/urls.py +++ b/web/urls.py @@ -1,5 +1,5 @@ - -# ============LICENSE_START========================================== + +# ============LICENSE_START========================================== # org.onap.vvp/test-engine # =================================================================== # Copyright © 2017 AT&T Intellectual Property. All rights reserved. @@ -55,7 +55,8 @@ from django.conf.urls import include, url from django.contrib import admin urlpatterns = [ - url(r'^admin/', include(admin.site.urls) ), + url(r'^admin/', include(admin.site.urls)), url(r'^ice-ci/v1/', include('iceci.urls')), - url(r'^api-auth/', include('rest_framework.urls', namespace='rest_framework')), + url(r'^api-auth/', include('rest_framework.urls', + namespace='rest_framework')), ] diff --git a/web/wsgi.py b/web/wsgi.py index d5820d7..d969258 100644 --- a/web/wsgi.py +++ b/web/wsgi.py @@ -1,5 +1,5 @@ - -# ============LICENSE_START========================================== + +# ============LICENSE_START========================================== # org.onap.vvp/test-engine # =================================================================== # Copyright © 2017 AT&T Intellectual Property. All rights reserved. |