We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2556991 commit 632768dCopy full SHA for 632768d
1 file changed
cumulusci/cli/checks.py
@@ -89,7 +89,7 @@ def _rule(fill="=", length=60, new_line=False):
89
checks = plans[plan_name]["checks"]
90
91
# Check if there are no checks available under the plan
92
- if checks.length == 0:
+ if len(checks) == 0:
93
raise click.UsageError(
94
f"No checks exists for the '{plan_name}'. To view available checks run: `cci checks info`"
95
)
0 commit comments