From 9633b1c2797cde6484d1d95e051ce493623e5e7c Mon Sep 17 00:00:00 2001 From: exflikt Date: Sat, 12 Oct 2024 00:15:17 +0900 Subject: [PATCH] Fix mis-spelling --- app/routers/products.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/routers/products.py b/app/routers/products.py index 6a7c38c..a81639b 100644 --- a/app/routers/products.py +++ b/app/routers/products.py @@ -98,5 +98,5 @@ async def get_empty_product_editor(request: Request): # TODO: This path is defined temporally for convenience and should be removed in the future. @router.put("/products/static/{csv_file}") -async def renew_table_from_products_list_csv(csv_file: str = "products-list.csv"): +async def renew_table_from_products_list_csv(csv_file: str = "product-list.csv"): await ProductTable.renew_from_static_csv(f"static/{csv_file}")