From ead2e7ee821f166a55180cbd3da74aefd21a8f59 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 12 Feb 2026 14:20:59 +0000 Subject: [PATCH 1/2] Initial plan From c67974d350c6d1c749e54d8385a5fdf57c5f9280 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 12 Feb 2026 14:22:25 +0000 Subject: [PATCH 2/2] fix: apply Black formatting to app/auth.py Co-authored-by: christianlouis <361235+christianlouis@users.noreply.github.com> --- app/auth.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/app/auth.py b/app/auth.py index 3f0abb52..0706df1e 100644 --- a/app/auth.py +++ b/app/auth.py @@ -130,9 +130,7 @@ async def oauth_callback(request: Request): return RedirectResponse(url=redirect_url, status_code=status.HTTP_302_FOUND) except Exception as e: print(f"OAuth authentication error: {str(e)}") - return RedirectResponse( - url=f"/login?error=Authentication+failed:+{str(e)}", status_code=status.HTTP_302_FOUND - ) + return RedirectResponse(url=f"/login?error=Authentication+failed:+{str(e)}", status_code=status.HTTP_302_FOUND) async def auth(request: Request):