From b9c62b5c320d0b7f45a05f0d0520aef40df677cf Mon Sep 17 00:00:00 2001 From: clearml <> Date: Sun, 9 Feb 2025 23:56:18 +0200 Subject: [PATCH] Black formatting --- clearml/router/fastapi_proxy.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/clearml/router/fastapi_proxy.py b/clearml/router/fastapi_proxy.py index 3b781b0f..e80ebca1 100644 --- a/clearml/router/fastapi_proxy.py +++ b/clearml/router/fastapi_proxy.py @@ -87,7 +87,7 @@ class FastAPIProxy: url=url, headers=dict(request.headers), content=await request.body(), - params=request.query_params + params=request.query_params, ) else: request = session.build_request( @@ -96,7 +96,7 @@ class FastAPIProxy: content=request.stream(), params=request.query_params, headers=dict(request.headers), - timeout=httpx.USE_CLIENT_DEFAULT + timeout=httpx.USE_CLIENT_DEFAULT, ) proxied_response = await session.send( request=request,