Skip to content

Instantly share code, notes, and snippets.

@kennethlove
Created July 24, 2012 21:43
Show Gist options
  • Save kennethlove/3172861 to your computer and use it in GitHub Desktop.
Save kennethlove/3172861 to your computer and use it in GitHub Desktop.
class SomeForm(forms.Form):
name = forms.CharField(max_length=200)
def __init__(self, *args, **kwargs):
super(SomeForm, self).__init__(*args, **kwargs)
self.fields["name"].max_length = 300
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment