Skip to content

Commit 7fb33dc

Browse files
authored
Merge pull request #260 from JenySadadia/remove-verbose-builds-history
Remove unnecessary print while getting builds history
2 parents 56a3612 + d7898de commit 7fb33dc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

kcidev/subcommands/maestro/validate/helper.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -385,10 +385,10 @@ def get_checkouts(ctx, giturl, branch, days):
385385
]
386386
checkouts = ctx.invoke(
387387
results,
388-
count=True,
389388
nodes=True,
390389
filter=filters,
391390
paginate=False,
391+
verbose=False,
392392
)
393393
return checkouts
394394

@@ -408,10 +408,10 @@ def get_builds_history(ctx, checkouts, arch):
408408
filters.append(f"data.arch={arch}")
409409
maestro_builds = ctx.invoke(
410410
results,
411-
count=True,
412411
nodes=True,
413412
filter=filters,
414413
paginate=False,
414+
verbose=False,
415415
)
416416

417417
branch = c["data"]["kernel_revision"].get("branch")

0 commit comments

Comments
 (0)