mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2024-11-26 19:44:00 +03:00
Merge pull request #1131 from webyneter/fix-travis-importedbutunused-errors
Workaround flake8 "imported but unused" errors
This commit is contained in:
commit
92ffe53403
|
@ -12,8 +12,6 @@ Local settings
|
||||||
- Add django-extensions as app
|
- Add django-extensions as app
|
||||||
"""
|
"""
|
||||||
|
|
||||||
import socket
|
|
||||||
import os
|
|
||||||
from .base import * # noqa
|
from .base import * # noqa
|
||||||
|
|
||||||
# DEBUG
|
# DEBUG
|
||||||
|
@ -55,6 +53,9 @@ INSTALLED_APPS += ['debug_toolbar', ]
|
||||||
|
|
||||||
INTERNAL_IPS = ['127.0.0.1', '10.0.2.2', ]
|
INTERNAL_IPS = ['127.0.0.1', '10.0.2.2', ]
|
||||||
{% if cookiecutter.use_docker == 'y' %}
|
{% if cookiecutter.use_docker == 'y' %}
|
||||||
|
{# [cookiecutter-django] This is a workaround to flake8 "imported but unused" errors #}
|
||||||
|
import socket
|
||||||
|
import os
|
||||||
# tricks to have debug toolbar when developing with docker
|
# tricks to have debug toolbar when developing with docker
|
||||||
if os.environ.get('USE_DOCKER') == 'yes':
|
if os.environ.get('USE_DOCKER') == 'yes':
|
||||||
ip = socket.gethostbyname(socket.gethostname())
|
ip = socket.gethostbyname(socket.gethostname())
|
||||||
|
|
Loading…
Reference in New Issue
Block a user