Removed unused AdminCommaSeparatedIntegerFieldWidget.

Unused since f212b24b64.
This commit is contained in:
Tim Graham 2016-04-15 11:05:11 -04:00
parent 3cb63b0e47
commit 5cc8261c39
1 changed files with 0 additions and 8 deletions

View File

@ -398,11 +398,3 @@ class AdminIntegerFieldWidget(forms.TextInput):
class AdminBigIntegerFieldWidget(AdminIntegerFieldWidget):
class_name = 'vBigIntegerField'
class AdminCommaSeparatedIntegerFieldWidget(forms.TextInput):
def __init__(self, attrs=None):
final_attrs = {'class': 'vCommaSeparatedIntegerField'}
if attrs is not None:
final_attrs.update(attrs)
super(AdminCommaSeparatedIntegerFieldWidget, self).__init__(attrs=final_attrs)