PEP8 cleanups, specially E501 line too long.

This commit is contained in:
Roberto Rosario
2015-07-22 18:21:37 -04:00
parent c275988c90
commit 4527563d89
118 changed files with 2839 additions and 756 deletions

View File

@@ -23,7 +23,9 @@ class APIEndPoint(object):
self.name = name
self.endpoints = []
try:
api_urls = import_string('{0}.urls.api_urls'.format(app_name or name))
api_urls = import_string(
'{0}.urls.api_urls'.format(app_name or name)
)
except Exception:
if settings.DEBUG:
raise