diff --git a/example/app/forms.py b/example/app/forms.py index 5d5ae4e2..a6362493 100644 --- a/example/app/forms.py +++ b/example/app/forms.py @@ -6,7 +6,6 @@ RADIO_CHOICES = (("1", "Radio 1"), ("2", "Radio 2")) - MEDIA_CHOICES = ( ("Audio", (("vinyl", "Vinyl"), ("cd", "CD"))), ("Video", (("vhs", "VHS Tape"), ("dvd", "DVD"))), @@ -14,8 +13,6 @@ ) - - class TestForm(forms.Form): """Form with a variety of widgets to test django_bootstrap5 rendering."""