From 8dc470706f73671e065a9cf6e4742453a7a6bc95 Mon Sep 17 00:00:00 2001 From: James McKinney <26463+jpmckinney@users.noreply.github.com> Date: Sun, 10 Dec 2023 00:39:54 -0500 Subject: [PATCH] chore: Set isort line_length --- representatives/admin.py | 8 +------- representatives/views.py | 8 +------- setup.cfg | 1 + 3 files changed, 3 insertions(+), 14 deletions(-) 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]