summaryrefslogtreecommitdiff
path: root/django/forms/forms.py
diff options
context:
space:
mode:
authorMariusz Felisiak <felisiak.mariusz@gmail.com>2025-03-01 19:41:37 +0100
committerGitHub <noreply@github.com>2025-03-01 19:41:37 +0100
commitff3aaf036f0cb66cd8f404cd51c603e68aaa7676 (patch)
treea8381709777a84aad1c3c679dc5807bab6f486db /django/forms/forms.py
parentea1e3703bee28bfbe4f32ceb39ad31763353b143 (diff)
Applied Black's 2025 stable style.
https://github.com/psf/black/releases/tag/25.1.0
Diffstat (limited to 'django/forms/forms.py')
-rw-r--r--django/forms/forms.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/django/forms/forms.py b/django/forms/forms.py
index 844f15f9f2..d05bf4bb9e 100644
--- a/django/forms/forms.py
+++ b/django/forms/forms.py
@@ -431,6 +431,7 @@ class BaseForm(RenderableFormMixin):
class Form(BaseForm, metaclass=DeclarativeFieldsMetaclass):
"A collection of Fields, plus their associated data."
+
# This is a separate class from BaseForm in order to abstract the way
# self.fields is specified. This class (Form) is the one that does the
# fancy metaclass stuff purely for the semantic sugar -- it allows one