Skip to content

Commit

Permalink
Bump black from 24.1.0 to 24.1.1 (#264)
Browse files Browse the repository at this point in the history
  • Loading branch information
dependabot[bot] committed Feb 11, 2024
1 parent 15e2d85 commit 21f30ea
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 1 deletion.
1 change: 1 addition & 0 deletions django_select2/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
.. _Select2: https://select2.org/
"""

from django import get_version

from . import _version
Expand Down
1 change: 1 addition & 0 deletions django_select2/apps.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Django application configuration."""

from django.apps import AppConfig


Expand Down
1 change: 1 addition & 0 deletions django_select2/cache.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
.. _django.core.cache: https://docs.djangoproject.com/en/dev/topics/cache/
"""

from django.core.cache import caches

from .conf import settings
Expand Down
1 change: 1 addition & 0 deletions django_select2/conf.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Settings for Django-Select2."""

from appconf import AppConf
from django.conf import settings # NOQA

Expand Down
1 change: 1 addition & 0 deletions django_select2/forms.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@
:parts: 1
"""

import operator
import uuid
from functools import reduce
Expand Down
1 change: 1 addition & 0 deletions django_select2/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
path('select2/', include('django_select2.urls')),
"""

from django.urls import path

from .views import AutoResponseView
Expand Down
1 change: 1 addition & 0 deletions django_select2/views.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""JSONResponse views for model widgets."""

from django.core import signing
from django.core.signing import BadSignature
from django.http import Http404, JsonResponse
Expand Down
2 changes: 1 addition & 1 deletion linter-requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
bandit==1.7.7
black==24.1.0
black==24.1.1
flake8==7.0.0
isort==5.13.2
pydocstyle[toml]==6.3.0

0 comments on commit 21f30ea

Please sign in to comment.