Skip to content

Commit 348f81e

Browse files
committed
frontend fix
1 parent bb1a0fe commit 348f81e

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

text-frontend/__main__.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,7 @@ def _post(path: str, json: dict) -> dict:
1717
return response.json()
1818

1919
typer.echo("Requesting work...")
20-
# tasks = [_post("/api/v1/tasks/", {"type": "generic"})]
21-
tasks = [_post("/api/v1/tasks/", {"type": "rate_summary"})]
20+
tasks = [_post("/api/v1/tasks/", {"type": "generic"})]
2221
while tasks:
2322
task = tasks.pop(0)
2423
match (task["type"]):

0 commit comments

Comments
 (0)