From 9a2cf8e08334fc42cb2e18a4fa6cdd1c04797644 Mon Sep 17 00:00:00 2001 From: Alexander-D-Karpov Date: Sun, 4 Jun 2023 00:57:42 +0300 Subject: [PATCH] fixed linter --- akarpov/common/forms.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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