Skip to content
Snippets Groups Projects
Commit e7f056d2 authored by Hervé  MENAGER's avatar Hervé MENAGER
Browse files

remove annoying debug prints.

Former-commit-id: 946287fc5195ccc83a1bc914d0446873891f748e
parent 741d7d48
No related branches found
No related tags found
No related merge requests found
......@@ -141,10 +141,6 @@ class BaseCompoundFormSet(BaseFormSet):
form.fields["molecule_comp"] = forms.CharField(widget=forms.TextInput(attrs={'placeholder':'Molecule commposition here', 'required':'required'}))
CompoundFormSet = formset_factory(CompoundForm, formset=BaseCompoundFormSet, extra=2, max_num=500, can_delete=True)
formset = CompoundFormSet()
print(formset.is_valid())
for form in formset:
print(form.as_table())
class TestsForm(ModelForm):
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment