Wauplin HF staff commited on
Commit
0e5a8eb
·
verified ·
1 Parent(s): 6bfd959

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -2
app.py CHANGED
@@ -85,8 +85,7 @@ def main_page(request: Request):
85
  return HTML_ROOT + LOGIN_BUTTON + HTML_AFTER
86
 
87
  oauth_info.access_token_expires_at = str(oauth_info.access_token_expires_at) # JSON complains about datetimes
88
- middle = LOGOUT_BUTTON.format(oauth_info=json.dumps(asdict(oauth_info), indent=2)) if oauth_info is not None else LOGIN_BUTTON
89
- return HTML_ROOT + middle + HTML_AFTER
90
 
91
  attach_huggingface_oauth(app)
92
 
 
85
  return HTML_ROOT + LOGIN_BUTTON + HTML_AFTER
86
 
87
  oauth_info.access_token_expires_at = str(oauth_info.access_token_expires_at) # JSON complains about datetimes
88
+ return HTML_ROOT + LOGOUT_BUTTON.format(oauth_info=json.dumps(asdict(oauth_info), indent=2)) + HTML_AFTER
 
89
 
90
  attach_huggingface_oauth(app)
91