From ccd94c90d33b7aee85117078576684fab5055ce5 Mon Sep 17 00:00:00 2001 From: Chris Lovering Date: Mon, 19 Feb 2024 21:35:56 +0000 Subject: ruff lint fix: Manual non-breaking changes --- docs/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docs/utils.py') diff --git a/docs/utils.py b/docs/utils.py index 796eca3d..de40cf6b 100644 --- a/docs/utils.py +++ b/docs/utils.py @@ -204,7 +204,7 @@ def build_api_doc() -> None: return result = subprocess.run(cmd, cwd=build_root, stdout=subprocess.PIPE, check=True, env=os.environ) # noqa: S603 - logger.debug("api-doc Output:\n" + result.stdout.decode(encoding="utf-8") + "\n") + logger.debug(f"api-doc Output:\n{result.stdout.decode(encoding='utf-8')}\n") cleanup() -- cgit v1.2.3