Skip to content

Commit

Permalink
chore: Set isort line_length
Browse files Browse the repository at this point in the history
  • Loading branch information
jpmckinney committed Dec 10, 2023
1 parent cef4ac8 commit 8dc4707
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 14 deletions.
8 changes: 1 addition & 7 deletions representatives/admin.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
8 changes: 1 addition & 7 deletions representatives/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -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


Expand Down
1 change: 1 addition & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ install_requires =
represent-boundaries

[isort]
line_length = 119
profile = black

[flake8]
Expand Down

0 comments on commit 8dc4707

Please sign in to comment.