chore: lint

This commit is contained in:
Richard Tang
2026-04-26 11:35:16 -07:00
parent 53240eb888
commit 8c4085f5e8
2 changed files with 2 additions and 6 deletions
+1 -3
View File
@@ -904,9 +904,7 @@ def register_interaction_tools(mcp: FastMCP) -> None:
return result
try:
scroll_result = await bridge.scroll(
target_tab, direction=direction, amount=amount, selector=selector
)
scroll_result = await bridge.scroll(target_tab, direction=direction, amount=amount, selector=selector)
log_tool_call(
"browser_scroll",
params,
@@ -201,9 +201,7 @@ class TestComplexScriptExecution:
"""Test LinkedIn-style infinite feed scrolling with lazy loading."""
scroll_calls = []
async def mock_scroll(
tab_id: int, direction: str, amount: int = 500, selector: str | None = None
) -> dict:
async def mock_scroll(tab_id: int, direction: str, amount: int = 500, selector: str | None = None) -> dict:
scroll_calls.append((tab_id, direction, amount))
return {"ok": True}