From 2b5ae4829d4e60686b12acc8a932373e8e216a66 Mon Sep 17 00:00:00 2001 From: Krzysztof Klimonda Date: Sat, 23 Feb 2013 23:54:49 +0100 Subject: [PATCH] Delete Pin.__init__ as we are not doing anything special --- pinry/pins/forms.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/pinry/pins/forms.py b/pinry/pins/forms.py index 2463117..12f2507 100644 --- a/pinry/pins/forms.py +++ b/pinry/pins/forms.py @@ -11,9 +11,6 @@ class PinForm(forms.Form): description = forms.CharField(label='Description', required=False, widget=forms.Textarea) tags = TagField() - def __init__(self, *args, **kwargs): - super(forms.Form, self).__init__(*args, **kwargs) - def check_if_image(self, data): # Test file type image_file_types = ['png', 'gif', 'jpeg', 'jpg']