Add Pablo: the friendly label printer helper #5

Merged
marsien merged 15 commits from add-pablo into master 2026-04-16 14:02:48 +00:00
Showing only changes of commit 84963b42e2 - Show all commits

View file

@ -73,7 +73,7 @@ class LabelingBot:
@app.get("/", response_class=HTMLResponse) @app.get("/", response_class=HTMLResponse)
async def root(): async def root():
with open("fegen/docs/index.html", "r") as f: with open("fegen/docs/index.html", "rb") as f:
index = f.read() index = f.read()
return index return index