Skip to content

Commit 8dc4707

Browse files
committed
chore: Set isort line_length
1 parent cef4ac8 commit 8dc4707

File tree

3 files changed

+3
-14
lines changed

3 files changed

+3
-14
lines changed

representatives/admin.py

+1-7
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,7 @@
22

33
from django.contrib import admin, messages
44

5-
from representatives.models import (
6-
Candidate,
7-
Election,
8-
Representative,
9-
RepresentativeSet,
10-
app_settings,
11-
)
5+
from representatives.models import Candidate, Election, Representative, RepresentativeSet, app_settings
126

137

148
@admin.register(RepresentativeSet)

representatives/views.py

+1-7
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,7 @@
66
from boundaries.base_views import BadRequest, ModelDetailView, ModelListView
77
from boundaries.models import Boundary
88

9-
from representatives.models import (
10-
Candidate,
11-
Election,
12-
Representative,
13-
RepresentativeSet,
14-
app_settings,
15-
)
9+
from representatives.models import Candidate, Election, Representative, RepresentativeSet, app_settings
1610
from representatives.utils import boundary_url_to_name
1711

1812

setup.cfg

+1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ install_requires =
1616
represent-boundaries
1717

1818
[isort]
19+
line_length = 119
1920
profile = black
2021

2122
[flake8]

0 commit comments

Comments
 (0)