1👍
✅
The Django docs on custom formset validation show that you should create a clean
method.
You have named your method insp_clean
, so Django will never call it. Rename the method to clean
.
Source:stackexchange.com