Skip to content
Snippets Groups Projects
Commit 67318a4e authored by Neda Moeini's avatar Neda Moeini
Browse files

Fix F-string to be supported by python3.10

parent 74331053
No related branches found
No related tags found
No related merge requests found
......@@ -63,7 +63,7 @@ class CSVUploadForm(forms.Form):
)
if missing_columns:
err_msg = f"Missing required columns: {", ".join(missing_columns)}"
err_msg = f"Missing required columns: {', '.join(missing_columns)}"
raise forms.ValidationError(err_msg)
except (UnicodeDecodeError, csv.Error) as e:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment