Skip to content

Commit

Permalink
fix isort complains
Browse files Browse the repository at this point in the history
  • Loading branch information
jrief committed Jan 16, 2024
1 parent 3c2f327 commit 99b8faa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions formset/renderers/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
from enum import auto

try:
from enum import StrEnum
except ImportError:
Expand Down
2 changes: 1 addition & 1 deletion formset/renderers/bootstrap.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from django.utils.html import format_html

from formset.renderers import ClassList, ButtonVariant
from formset.renderers import ButtonVariant, ClassList
from formset.renderers.default import FormRenderer as DefaultFormRenderer


Expand Down

0 comments on commit 99b8faa

Please sign in to comment.