Pep8 imports

This commit is contained in:
Alexandre Provencio 2016-07-05 21:39:29 -03:00
parent 36bdfd10ac
commit be576e5232
2 changed files with 4 additions and 3 deletions

View File

@ -12,10 +12,11 @@ Local settings
- Add django-extensions as app - Add django-extensions as app
""" """
from .common import * # noqa
import socket import socket
import os import os
from .common import * # noqa
# DEBUG # DEBUG
# ------------------------------------------------------------------------------ # ------------------------------------------------------------------------------
DEBUG = env.bool('DJANGO_DEBUG', default=True) DEBUG = env.bool('DJANGO_DEBUG', default=True)

View File

@ -14,11 +14,11 @@ Production Configurations
""" """
from __future__ import absolute_import, unicode_literals from __future__ import absolute_import, unicode_literals
from boto.s3.connection import OrdinaryCallingFormat
from django.utils import six
{% if cookiecutter.use_sentry_for_error_reporting == 'y' %} {% if cookiecutter.use_sentry_for_error_reporting == 'y' %}
import logging import logging
{% endif %} {% endif %}
from boto.s3.connection import OrdinaryCallingFormat
from django.utils import six
from .common import * # noqa from .common import * # noqa