Skip to content
This repository was archived by the owner on Apr 22, 2026. It is now read-only.

Commit 6cdd0ca

Browse files
committed
fix: suppress BLE001 for intentional broad catch in execute_hub_tool
1 parent 462f6ed commit 6cdd0ca

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

  • fuzzforge-mcp/src/fuzzforge_mcp/tools

fuzzforge-mcp/src/fuzzforge_mcp/tools/hub.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -195,8 +195,7 @@ async def execute_hub_tool(
195195
f"{assets_str}:/app/uploads:ro",
196196
f"{assets_str}:/app/samples:ro",
197197
]
198-
except Exception:
199-
# Never block tool execution because of asset injection failure
198+
except Exception: # noqa: BLE001 - never block tool execution due to asset injection failure
200199
extra_volumes = []
201200

202201
result = await executor.execute_tool(

0 commit comments

Comments
 (0)