Skip to content

Commit

Permalink
Fix isort issue
Browse files Browse the repository at this point in the history
  • Loading branch information
fsbraun committed Aug 9, 2024
1 parent aeb6488 commit 0115df2
Showing 1 changed file with 3 additions and 12 deletions.
15 changes: 3 additions & 12 deletions djangocms_bootstrap4/contrib/bootstrap4_grid/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,26 +3,17 @@
from django.db import models
from django.utils.translation import gettext
from django.utils.translation import gettext_lazy as _

from django.utils.translation import ngettext

from cms.models import CMSPlugin

from djangocms_bootstrap4.constants import DEVICE_SIZES
from djangocms_bootstrap4.fields import AttributesField, IntegerRangeField, TagTypeField
from djangocms_bootstrap4.helpers import (
get_choices_match,
get_first_choice,
mark_safe_lazy,
)
from djangocms_bootstrap4.helpers import get_choices_match, get_first_choice, mark_safe_lazy

from .constants import (
GRID_COLUMN_ALIGNMENT_CHOICES,
GRID_COLUMN_CHOICES,
GRID_CONTAINER_CHOICES,
GRID_ROW_HORIZONTAL_ALIGNMENT_CHOICES,
GRID_ROW_VERTICAL_ALIGNMENT_CHOICES,
GRID_SIZE,
GRID_COLUMN_ALIGNMENT_CHOICES, GRID_COLUMN_CHOICES, GRID_CONTAINER_CHOICES, GRID_ROW_HORIZONTAL_ALIGNMENT_CHOICES,
GRID_ROW_VERTICAL_ALIGNMENT_CHOICES, GRID_SIZE,
)


Expand Down

0 comments on commit 0115df2

Please sign in to comment.