Browse Source

fix: use named var in f-string

My Python 3.11.2 explodes otherwise.
main
decentral1se 6 days ago
parent
commit
de85c36510
No known key found for this signature in database GPG Key ID: 3789458B3D0C410
  1. 4
      upload.py

4
upload.py

@ -17,13 +17,13 @@ APP.config["SECRET_KEY"] = os.urandom(24)
class ImageUploadForm(FlaskForm): class ImageUploadForm(FlaskForm):
"""Image upload form.""" """Image upload form."""
allowed = ", ".join(ALLOWED_FILES)
image = FileField( image = FileField(
"image:", "image:",
validators=[ validators=[
FileAllowed( FileAllowed(
ALLOWED_FILES, 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}",
) )
], ],
) )

Loading…
Cancel
Save