Skip to content

Commit 7c0ee9f

Browse files
committed
Fix cookiecutter formatting
1 parent b84aabf commit 7c0ee9f

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

cookiecutter/ci/{{ cookiecutter.__project_name }}/.ci/scripts/check_cli_dependencies.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ def dependencies(path: Path) -> t.Iterator[Requirement]:
2626
base_path = Path(__file__).parent.parent.parent
2727
glue_path = base_path / GLUE_DIR
2828

29-
cli_dependency = next((r for r in dependencies(base_path) if r.name == "pulp-cli"))
30-
glue_dependency = next((r for r in dependencies(glue_path) if r.name == "pulp-glue"))
29+
cli_dependency = next(r for r in dependencies(base_path) if r.name == "pulp-cli")
30+
glue_dependency = next(r for r in dependencies(glue_path) if r.name == "pulp-glue")
3131

3232
if cli_dependency.specifier != glue_dependency.specifier:
3333
print("🪢 CLI and GLUE dependencies mismatch:")

0 commit comments

Comments
 (0)