diff options
-rw-r--r-- | .flake8 | 1 | ||||
-rw-r--r-- | api/tests/base.py | 2 | ||||
-rw-r--r-- | pysite/hosts.py | 6 |
3 files changed, 5 insertions, 4 deletions
@@ -1,5 +1,6 @@ [flake8] max-line-length=100 +ignore=S106 application_import_names=admin,api,home,pysite,wiki exclude=__pycache__, venv, .venv, **/migrations import-order-style=pycharm diff --git a/api/tests/base.py b/api/tests/base.py index 395dc55c..5d8ccf8c 100644 --- a/api/tests/base.py +++ b/api/tests/base.py @@ -5,7 +5,7 @@ from rest_framework.test import APITestCase test_user, _created = User.objects.get_or_create( username='test', email='[email protected]', - password='testpass', # flake8: noqa - S106 + password='testpass', # noqa: S106 is_superuser=True, is_staff=True ) diff --git a/pysite/hosts.py b/pysite/hosts.py index 3cf41e7f..9d4c1ce9 100644 --- a/pysite/hosts.py +++ b/pysite/hosts.py @@ -4,10 +4,10 @@ from django_hosts import host, patterns host_patterns = patterns( '', # > | Subdomain | URL Module | Host entry name | - host(r'admin', 'admin.urls', name="admin"), - host(r'api', 'api.urls', name='api'), + host(r'admin', 'admin.urls', name="admin"), + host(r'api', 'api.urls', name='api'), # host(r"staff", "staff", name="staff"), # host(r"wiki", "wiki", name="wiki"), # host(r"ws", "ws", name="ws"), - host(r'.*', 'home.urls', name=settings.DEFAULT_HOST) + host(r'.*', 'home.urls', name=settings.DEFAULT_HOST) ) |