diff --git a/representatives/admin.py b/representatives/admin.py index 888aa34..c489174 100644 --- a/representatives/admin.py +++ b/representatives/admin.py @@ -2,13 +2,7 @@ from django.contrib import admin, messages -from representatives.models import ( - Candidate, - Election, - Representative, - RepresentativeSet, - app_settings, -) +from representatives.models import Candidate, Election, Representative, RepresentativeSet, app_settings @admin.register(RepresentativeSet) diff --git a/representatives/views.py b/representatives/views.py index b995fe2..05302f9 100644 --- a/representatives/views.py +++ b/representatives/views.py @@ -6,13 +6,7 @@ from boundaries.base_views import BadRequest, ModelDetailView, ModelListView from boundaries.models import Boundary -from representatives.models import ( - Candidate, - Election, - Representative, - RepresentativeSet, - app_settings, -) +from representatives.models import Candidate, Election, Representative, RepresentativeSet, app_settings from representatives.utils import boundary_url_to_name diff --git a/setup.cfg b/setup.cfg index 95cada6..e7c532d 100644 --- a/setup.cfg +++ b/setup.cfg @@ -16,6 +16,7 @@ install_requires = represent-boundaries [isort] +line_length = 119 profile = black [flake8]