├── .gitignore ├── LICENSE ├── README.md ├── setup.py └── test_pep8 ├── __init__.py ├── models.py ├── tests.py └── views.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TracyWebTech/django-test-pep8/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TracyWebTech/django-test-pep8/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TracyWebTech/django-test-pep8/HEAD/README.md -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TracyWebTech/django-test-pep8/HEAD/setup.py -------------------------------------------------------------------------------- /test_pep8/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test_pep8/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TracyWebTech/django-test-pep8/HEAD/test_pep8/models.py -------------------------------------------------------------------------------- /test_pep8/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TracyWebTech/django-test-pep8/HEAD/test_pep8/tests.py -------------------------------------------------------------------------------- /test_pep8/views.py: -------------------------------------------------------------------------------- 1 | # Create your views here. 2 | --------------------------------------------------------------------------------