refactor: 统一格式化代码中的多行列表与函数调用

对多处代码进行了统一的多行列表和函数调用进行格式化调整,包括将单行代码拆分为多行以提升可读性。
This commit is contained in:
2026-06-22 11:45:10 +08:00
parent 48f6d8a7f0
commit 843e9369fe
29 changed files with 419 additions and 406 deletions
+1 -1
View File
@@ -97,7 +97,7 @@ class TestPipFreeze:
mock_run.return_value = MagicMock(stdout="numpy==1.0.0\npandas==2.0.0\n", returncode=0)
piptool.pip_freeze()
# Should create requirements.txt
req_file = tmp_path / "requirements.txt"
tmp_path / "requirements.txt"
# Note: The actual implementation might write to current directory
def test_pip_freeze_calls_subprocess(self) -> None: