Skip to content

Commit 805ce4d

Browse files
Fix Python lint errors (line too long)
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent cbb5e33 commit 805ce4d

2 files changed

Lines changed: 6 additions & 2 deletions

File tree

python/e2e/test_mcp_and_agents.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,8 @@ async def test_should_pass_literal_env_values_to_mcp_server_subprocess(
9393

9494
message = await session.send_and_wait(
9595
{
96-
"prompt": "Use the env-echo/get_env tool to read the TEST_SECRET environment variable. Reply with just the value, nothing else."
96+
"prompt": "Use the env-echo/get_env tool to read the TEST_SECRET "
97+
"environment variable. Reply with just the value, nothing else."
9798
}
9899
)
99100
assert message is not None

python/e2e/testharness/context.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,10 @@
1717

1818

1919
def get_cli_path_for_tests() -> str:
20-
"""Get CLI path for E2E tests. Uses COPILOT_CLI_PATH env var if set, otherwise node_modules CLI."""
20+
"""Get CLI path for E2E tests.
21+
22+
Uses COPILOT_CLI_PATH env var if set, otherwise node_modules CLI.
23+
"""
2124
env_path = os.environ.get("COPILOT_CLI_PATH")
2225
if env_path and Path(env_path).exists():
2326
return str(Path(env_path).resolve())

0 commit comments

Comments
 (0)