summaryrefslogtreecommitdiff
path: root/django/forms/formsets.py
diff options
context:
space:
mode:
authordjango-bot <ops@djangoproject.com>2025-07-22 20:41:41 -0700
committernessita <124304+nessita@users.noreply.github.com>2025-07-23 20:17:55 -0300
commit69a93a88edb56ba47f624dac7a21aacc47ea474f (patch)
treef57507a4435d032493cae40e06ecb254790b67b2 /django/forms/formsets.py
parent55b0cc21310b76ce4018dd793ba50556eaf0af06 (diff)
Refs #36500 -- Rewrapped long docstrings and block comments via a script.
Rewrapped long docstrings and block comments to 79 characters + newline using script from https://github.com/medmunds/autofix-w505.
Diffstat (limited to 'django/forms/formsets.py')
-rw-r--r--django/forms/formsets.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/django/forms/formsets.py b/django/forms/formsets.py
index 94aebe4924..054cc0bc0a 100644
--- a/django/forms/formsets.py
+++ b/django/forms/formsets.py
@@ -307,10 +307,10 @@ class BaseFormSet(RenderableFormMixin):
raise AttributeError(
"'%s' object has no attribute 'ordered_forms'" % self.__class__.__name__
)
- # Construct _ordering, which is a list of (form_index, order_field_value)
- # tuples. After constructing this list, we'll sort it by order_field_value
- # so we have a way to get to the form indexes in the order specified
- # by the form data.
+ # Construct _ordering, which is a list of (form_index,
+ # order_field_value) tuples. After constructing this list, we'll sort
+ # it by order_field_value so we have a way to get to the form indexes
+ # in the order specified by the form data.
if not hasattr(self, "_ordering"):
self._ordering = []
for i, form in enumerate(self.forms):