There was an error while loading. Please reload this page.
1 parent b84aabf commit 7c0ee9fCopy full SHA for 7c0ee9f
1 file changed
cookiecutter/ci/{{ cookiecutter.__project_name }}/.ci/scripts/check_cli_dependencies.py
@@ -26,8 +26,8 @@ def dependencies(path: Path) -> t.Iterator[Requirement]:
26
base_path = Path(__file__).parent.parent.parent
27
glue_path = base_path / GLUE_DIR
28
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"))
+ 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")
31
32
if cli_dependency.specifier != glue_dependency.specifier:
33
print("🪢 CLI and GLUE dependencies mismatch:")
0 commit comments