diff --git a/akarpov/common/forms.py b/akarpov/common/forms.py index 07a650c..dc177e0 100644 --- a/akarpov/common/forms.py +++ b/akarpov/common/forms.py @@ -1,5 +1,6 @@ from django import forms + class MultipleFileInput(forms.ClearableFileInput): allow_multiple_selected = True @@ -15,4 +16,4 @@ def clean(self, data, initial=None): result = [single_file_clean(d, initial) for d in data] else: result = single_file_clean(data, initial) - return result \ No newline at end of file + return result