style fixing

This commit is contained in:
Matthias 2021-05-16 19:53:01 +02:00
parent 3a5b4ab74b
commit 508099e536
2 changed files with 2 additions and 2 deletions

View File

@ -781,7 +781,7 @@ class PartImport(FileManagementFormView):
if idx in self.file_manager.OPTIONAL_MATCH_HEADERS: if idx in self.file_manager.OPTIONAL_MATCH_HEADERS:
try: try:
exact_match = self.allowed_items[idx].get(**{a:data for a in self.matches[idx]}) exact_match = self.allowed_items[idx].get(**{a: data for a in self.matches[idx]})
except (ValueError, self.allowed_items[idx].model.DoesNotExist, self.allowed_items[idx].model.MultipleObjectsReturned): except (ValueError, self.allowed_items[idx].model.DoesNotExist, self.allowed_items[idx].model.MultipleObjectsReturned):
exact_match = None exact_match = None