fix: Apply black formatting to resolve CI formatting issues
Some checks failed
CI / test (3.10) (push) Failing after 1m21s
CI / test (3.11) (push) Failing after 1m19s
CI / test (3.9) (push) Failing after 1m22s
CI / lint (push) Failing after 43s

This commit is contained in:
CI Bot
2026-02-06 07:56:02 +00:00
parent 123a4f7d1d
commit d369d3b1f8
8 changed files with 75 additions and 39 deletions

View File

@@ -30,7 +30,9 @@ class PytestGenerator:
self.output_dir = Path(output_dir)
self.mock_server_url = mock_server_url
self.env = Environment(
loader=FileSystemLoader(str(Path(__file__).parent.parent.parent / "templates" / "pytest")),
loader=FileSystemLoader(
str(Path(__file__).parent.parent.parent / "templates" / "pytest")
),
trim_blocks=True,
lstrip_blocks=True,
)
@@ -160,7 +162,7 @@ def test_{test_name}(base_url, {params}):
params.append(f'{param_name}="test_{param_name}"')
elif param["in"] == "query":
params.append(f'{param_name}=None')
params.append(f"{param_name}=None")
return ", ".join(params)