Spaces:
Sleeping
Sleeping
Update app.py
Browse files
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 |
-
|
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 |
|