mirror of
https://github.com/Hopiu/cookiecutter-django.git
synced 2026-05-10 13:44:43 +00:00
minor pep8 fixes
fixes those small linting issues that should not be in this template. ``users/models.py`` F401 warnings are intentionally left for convenience in future coding.
This commit is contained in:
parent
259f0afae6
commit
cdac4b6f06
3 changed files with 1 additions and 3 deletions
|
|
@ -1,5 +1,5 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
#!/usr/bin/env python
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
import os
|
||||
import sys
|
||||
|
|
|
|||
|
|
@ -3,4 +3,3 @@ from __future__ import absolute_import
|
|||
|
||||
from .local import Local # noqa
|
||||
from .production import Production # noqa
|
||||
|
||||
|
|
|
|||
|
|
@ -73,7 +73,6 @@ class Common(Configuration):
|
|||
}
|
||||
# END MIGRATIONS CONFIGURATION
|
||||
|
||||
|
||||
# DEBUG
|
||||
# See: https://docs.djangoproject.com/en/dev/ref/settings/#debug
|
||||
DEBUG = values.BooleanValue(False)
|
||||
|
|
|
|||
Loading…
Reference in a new issue