mirror of
https://github.com/Alexander-D-Karpov/akarpov
synced 2024-11-22 01:36:33 +03:00
fixed linter
This commit is contained in:
parent
3f0da7b961
commit
9a2cf8e083
|
@ -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
|
||||
return result
|
||||
|
|
Loading…
Reference in New Issue
Block a user