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
"""
from .common import * # noqa
import socket
import os
from .common import * # noqa
# DEBUG
# ------------------------------------------------------------------------------
DEBUG = env.bool('DJANGO_DEBUG', default=True)

View File

@ -14,11 +14,11 @@ Production Configurations
"""
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' %}
import logging
{% endif %}
from boto.s3.connection import OrdinaryCallingFormat
from django.utils import six
from .common import * # noqa