django / django-localflavor

Country-specific Django helpers, formerly of contrib fame
https://django-localflavor.readthedocs.io/
BSD 3-Clause "New" or "Revised" License
813 stars 289 forks source link

Removed unused *args from fields that use forms.RegexField #405

Closed benkonrath closed 4 years ago

benkonrath commented 4 years ago

Using positional arguments with fields that inherit from Django's forms.RegexField previously only worked with Django 1.11 but were ignored with Django >= 2.0. This PR removes positional arguments from all fields that inherit from Django's forms.RegexField. Any options needed on the parent forms.RegexField, forms.CharField or forms.Field must now be set with keyword arguments.