diff options
| -rw-r--r-- | django/contrib/localflavor/usa/forms.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/django/contrib/localflavor/usa/forms.py b/django/contrib/localflavor/usa/forms.py index 9106519743..9461f4fe80 100644 --- a/django/contrib/localflavor/usa/forms.py +++ b/django/contrib/localflavor/usa/forms.py @@ -18,10 +18,6 @@ class USZipCodeField(RegexField): *args, **kwargs) class USPhoneNumberField(Field): - def __init__(self, allow_letters=True, *args, **kwargs): - self.allow_letters = allow_letters - super(USPhoneNumberField, self).__init__(*args, **kwargs) - def clean(self, value): super(USPhoneNumberField, self).clean(value) if value in EMPTY_VALUES: |
