From d7770f180677360f662e5657fb2e9cbee1f61b7e Mon Sep 17 00:00:00 2001 From: "Michael Lund (Student)" Date: Wed, 18 Sep 2024 14:16:41 -0700 Subject: [PATCH] jpg to jpeg typo --- backend/src/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/src/app.py b/backend/src/app.py index b9f6dda..5683281 100644 --- a/backend/src/app.py +++ b/backend/src/app.py @@ -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}")