File tree Expand file tree Collapse file tree 1 file changed +0
-8
lines changed Expand file tree Collapse file tree 1 file changed +0
-8
lines changed Original file line number Diff line number Diff line change @@ -214,10 +214,6 @@ def full_clean(self):
214
214
if not self .is_bound : # Stop further processing.
215
215
return
216
216
self .cleaned_data = {}
217
- # If the form is permitted to be empty, and none of the form data has
218
- # changed from the initial data, short circuit any validation.
219
- if not self .has_changed ():
220
- return
221
217
222
218
self ._clean_fields ()
223
219
self ._clean_form ()
@@ -276,10 +272,6 @@ def clean(self):
276
272
"""
277
273
return self .cleaned_data
278
274
279
- def has_changed (self ):
280
- """Return True if data differs from initial."""
281
- return bool (self .changed_data )
282
-
283
275
@cached_property
284
276
def changed_data (self ):
285
277
return [name for name , bf in self ._bound_items () if bf ._has_changed ()]
You can’t perform that action at this time.
0 commit comments