fix: use named var in f-string

My Python 3.11.2 explodes otherwise.
This commit is contained in:
decentral1se 2024-11-16 17:40:37 +01:00
parent a9675c5b7f
commit de85c36510
No known key found for this signature in database
GPG Key ID: 03789458B3D0C410

View File

@ -17,13 +17,13 @@ APP.config["SECRET_KEY"] = os.urandom(24)
class ImageUploadForm(FlaskForm):
"""Image upload form."""
allowed = ", ".join(ALLOWED_FILES)
image = FileField(
"image:",
validators=[
FileAllowed(
ALLOWED_FILES,
f"Images only, please use any of the following file extensions: {(", ").join(ALLOWED_FILES)}",
f"Images only, please use any of the following file extensions: {allowed}",
)
],
)