jgrivolla commited on
Commit
f02b6d5
·
1 Parent(s): 350121d

hopefully fix templating now

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -150,7 +150,7 @@ def ausgeliehen(idKind):
150
  return result
151
 
152
  @app.get("/", response_class=HTMLResponse)
153
- async def read_root(request):
154
  return templates.TemplateResponse("index.html", {"page_title": PAGE_TITLE})
155
 
156
  # run the app
 
150
  return result
151
 
152
  @app.get("/", response_class=HTMLResponse)
153
+ async def read_root():
154
  return templates.TemplateResponse("index.html", {"page_title": PAGE_TITLE})
155
 
156
  # run the app