Skip to content

Commit d87b145

Browse files
committed
linting
Signed-off-by: Keval Mahajan <[email protected]>
1 parent a77468e commit d87b145

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

mcpgateway/schemas.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2413,7 +2413,7 @@ class GatewayCreate(BaseModel):
24132413

24142414
# Adding `auth_value` as an alias for better access post-validation
24152415
auth_value: Optional[str] = Field(None, validate_default=True)
2416-
2416+
24172417
# One time auth - do not store the auth in gateway flag
24182418
one_time_auth: Optional[bool] = Field(default=False, description="The authentication should be used only once and not stored in the gateway")
24192419

mcpgateway/services/tool_service.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1405,7 +1405,7 @@ async def connect_to_streamablehttp_server(server_url: str, headers: dict = head
14051405
tool_call_result = await connect_to_sse_server(tool_gateway.url, headers=headers)
14061406
elif transport == "streamablehttp":
14071407
tool_call_result = await connect_to_streamablehttp_server(tool_gateway.url, headers=headers)
1408-
1408+
14091409
content = tool_call_result.model_dump(by_alias=True).get("content", [])
14101410

14111411
filtered_response = extract_using_jq(content, tool.jsonpath_filter)

0 commit comments

Comments
 (0)