From 6b6bb02d6b551bda84d085f06c8978f9c5cdf9c2 Mon Sep 17 00:00:00 2001 From: Aleksey Filippov Date: Wed, 4 Sep 2024 23:40:13 +0400 Subject: [PATCH] Fix backend api --- backend/api.py | 1 - 1 file changed, 1 deletion(-) diff --git a/backend/api.py b/backend/api.py index 884285c..9c5ed0a 100644 --- a/backend/api.py +++ b/backend/api.py @@ -31,7 +31,6 @@ def upload_dataset(files_data): @api_bp.get("/dataset") -@api_bp.output(Schema, example="[string, string, ..., string]") def get_all_datasets(): return service.get_all_datasets()