From 348f81e4e7066bd610bf9226ce3e6a0599d9d19d Mon Sep 17 00:00:00 2001 From: Yannic Kilcher Date: Fri, 16 Dec 2022 00:09:12 +0100 Subject: [PATCH] frontend fix --- text-frontend/__main__.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/text-frontend/__main__.py b/text-frontend/__main__.py index f68b4c35..5810d436 100644 --- a/text-frontend/__main__.py +++ b/text-frontend/__main__.py @@ -17,8 +17,7 @@ def main(backend_url: str, api_key: str): return response.json() typer.echo("Requesting work...") - # tasks = [_post("/api/v1/tasks/", {"type": "generic"})] - tasks = [_post("/api/v1/tasks/", {"type": "rate_summary"})] + tasks = [_post("/api/v1/tasks/", {"type": "generic"})] while tasks: task = tasks.pop(0) match (task["type"]):