Skip to content

Commit

Permalink
Merge pull request #5 from SDT-org/img_fix
Browse files Browse the repository at this point in the history
fixed jpeg saves (#4)
  • Loading branch information
mclund2 authored Sep 18, 2024
2 parents 4439fa0 + d7770f1 commit 0553e82
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/src/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -378,7 +378,7 @@ def export_data(self, args: dict):
)

image_format = str(args["image_format"]).lower()
saveable_formats = ["jpg", "svg", "png"]
saveable_formats = ["jpeg", "svg", "png"]

if image_format not in saveable_formats:
raise Exception(f"Expected image_format to be one of {saveable_formats}")
Expand Down

0 comments on commit 0553e82

Please sign in to comment.