frontend fix

This commit is contained in:
Yannic Kilcher
2022-12-16 00:09:12 +01:00
parent bb1a0fe432
commit 348f81e4e7
+1 -2
View File
@@ -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"]):