Skip to content

Commit c7c8c2c

Browse files
ayhammoudaclaude
andcommitted
style(tests): wrap long subprocess -c argument under line-length=100
The hardened fallback test in commit 78afc07 introduced a line that was 101 chars (one over ruff's configured line-length=100). Splits the literal into two adjacent string literals via implicit concatenation; semantics unchanged. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent 4dbeaf9 commit c7c8c2c

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

tests/test_packaging.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,10 @@ def test_source_tree_import_without_installed_metadata(self, tmp_path: Path):
159159
sys.executable,
160160
"-S",
161161
"-c",
162-
prelude + "import mcp_server_python_docs; print(mcp_server_python_docs.__version__)",
162+
prelude + (
163+
"import mcp_server_python_docs; "
164+
"print(mcp_server_python_docs.__version__)"
165+
),
163166
],
164167
capture_output=True,
165168
text=True,

0 commit comments

Comments
 (0)