Commit 797d7426 authored by Tim Graham's avatar Tim Graham
Browse files

Removed django.forms.widgets.RadioInput per deprecation timeline.

refs #4592.
parent f6c1f05f
Loading
Loading
Loading
Loading
+0 −7
Original line number Diff line number Diff line
@@ -634,13 +634,6 @@ class RadioChoiceInput(ChoiceInput):
        self.value = force_text(self.value)


class RadioInput(RadioChoiceInput):
    def __init__(self, *args, **kwargs):
        msg = "RadioInput has been deprecated. Use RadioChoiceInput instead."
        warnings.warn(msg, RemovedInDjango18Warning, stacklevel=2)
        super(RadioInput, self).__init__(*args, **kwargs)


class CheckboxChoiceInput(ChoiceInput):
    input_type = 'checkbox'