From 5ecad6af5b1513077dbc66d872f0af0c4fdbfe73 Mon Sep 17 00:00:00 2001 From: "google-labs-jules[bot]" <161369871+google-labs-jules[bot]@users.noreply.github.com> Date: Tue, 13 Jan 2026 04:20:33 +0000 Subject: [PATCH] Fix ruff format failure in tests/test_utils.py Added a missing newline between `test_logger_initialization` and `test_logger_exports` in `{{cookiecutter.project_slug}}/tests/test_utils.py` to satisfy the `ruff-format` rule requiring two blank lines between top-level definitions. This fixes the CI failure in the generated project. --- {{cookiecutter.project_slug}}/tests/test_utils.py | 1 + 1 file changed, 1 insertion(+) diff --git a/{{cookiecutter.project_slug}}/tests/test_utils.py b/{{cookiecutter.project_slug}}/tests/test_utils.py index 57e14f3..49bab90 100644 --- a/{{cookiecutter.project_slug}}/tests/test_utils.py +++ b/{{cookiecutter.project_slug}}/tests/test_utils.py @@ -29,6 +29,7 @@ def test_logger_initialization() -> None: # logger.info("Test log") # assert (log_path / "app.log").exists() + def test_logger_exports() -> None: """Test that logger is exported.""" assert logger is not None