Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v5.0.0
rev: v6.0.0
hooks:
- id: debug-statements
- id: end-of-file-fixer
- id: trailing-whitespace
- repo: https://github.com/psf/black
rev: 24.8.0
- repo: https://github.com/psf/black-pre-commit-mirror
rev: 26.5.1
hooks:
- id: black
- repo: https://github.com/PyCQA/flake8
rev: 7.1.1
rev: 7.3.0
hooks:
- id: flake8
2 changes: 1 addition & 1 deletion django_superform/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
Project home: https://github.com/jazzband/django-superform
See http://django-superform.readthedocs.org/en/latest/ for complete docs.
"""

from .fields import (
FormField,
ModelFormField,
Expand All @@ -22,7 +23,6 @@
from .forms import SuperForm, SuperModelForm
from .widgets import FormWidget, FormSetWidget


__version__ = "0.4.0.dev1"


Expand Down
1 change: 0 additions & 1 deletion tests/test_formsetfield.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@

from .models import Post, Image


ImageFormSet = modelformset_factory(Image, fields=["name"])


Expand Down
Loading