Delete Pin.__init__ as we are not doing anything special

This commit is contained in:
Krzysztof Klimonda
2013-02-23 23:54:49 +01:00
parent e2a38f8a10
commit 2b5ae4829d

View File

@@ -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']