From 490b0b1933f5bb6ba56da545435eb8361f500a6b Mon Sep 17 00:00:00 2001 From: pulpbot Date: Sun, 2 Aug 2026 08:17:44 +0000 Subject: [PATCH] Update cookiecutter --- .ci/scripts/check_cli_dependencies.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.ci/scripts/check_cli_dependencies.py b/.ci/scripts/check_cli_dependencies.py index 74b0b1f..46da068 100755 --- a/.ci/scripts/check_cli_dependencies.py +++ b/.ci/scripts/check_cli_dependencies.py @@ -26,8 +26,8 @@ def dependencies(path: Path) -> t.Iterator[Requirement]: base_path = Path(__file__).parent.parent.parent glue_path = base_path / GLUE_DIR - cli_dependency = next(r for r in dependencies(base_path) if r.name == "pulp-cli") - glue_dependency = next(r for r in dependencies(glue_path) if r.name == "pulp-glue") + cli_dependency = next((r for r in dependencies(base_path) if r.name == "pulp-cli")) + glue_dependency = next((r for r in dependencies(glue_path) if r.name == "pulp-glue")) if cli_dependency.specifier != glue_dependency.specifier: print("🪢 CLI and GLUE dependencies mismatch:")