Wauplin HF staff commited on
Commit
afe3de2
·
verified ·
1 Parent(s): 58163fa

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -75,7 +75,7 @@ LOGOUT_BUTTON = """
75
  """
76
 
77
  @app.get("/", response_class=HTMLResponse)
78
- def page():
79
  oauth_info = parse_huggingface_oauth(request)
80
  return HTML_ROOT.format(content=LOGOUT_BUTTON.format(oauth_info=oauth_info) if oauth_info is not None else LOGIN_BUTTON)
81
 
 
75
  """
76
 
77
  @app.get("/", response_class=HTMLResponse)
78
+ def main_page(request: Request):
79
  oauth_info = parse_huggingface_oauth(request)
80
  return HTML_ROOT.format(content=LOGOUT_BUTTON.format(oauth_info=oauth_info) if oauth_info is not None else LOGIN_BUTTON)
81