We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1d07156 commit 383eac7Copy full SHA for 383eac7
css-reports/app.py
@@ -20,7 +20,10 @@
20
21
async def refresh_persistent_cookies() -> None:
22
for org_id, (auth_cookie, _) in persistent_organisations.items():
23
- persistent_organisations[org_id] = (auth_cookie, await check_or_refresh_cookie(org_id, auth_cookie))
+ persistent_organisations[org_id] = (
24
+ auth_cookie,
25
+ await check_or_refresh_cookie(org_id, auth_cookie)
26
+ )
27
28
29
@app.route("/")
0 commit comments