From d7898de100edd89c3be5f05464c2a271c678c360 Mon Sep 17 00:00:00 2001 From: Jeny Sadadia Date: Wed, 7 Jan 2026 13:23:18 +0530 Subject: [PATCH] Remove unnecessary print while getting builds history Signed-off-by: Jeny Sadadia --- kcidev/subcommands/maestro/validate/helper.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kcidev/subcommands/maestro/validate/helper.py b/kcidev/subcommands/maestro/validate/helper.py index f87901d..ddf5667 100644 --- a/kcidev/subcommands/maestro/validate/helper.py +++ b/kcidev/subcommands/maestro/validate/helper.py @@ -368,10 +368,10 @@ def get_checkouts(ctx, giturl, branch, days): ] checkouts = ctx.invoke( results, - count=True, nodes=True, filter=filters, paginate=False, + verbose=False, ) return checkouts @@ -391,10 +391,10 @@ def get_builds_history(ctx, checkouts, arch): filters.append(f"data.arch={arch}") maestro_builds = ctx.invoke( results, - count=True, nodes=True, filter=filters, paginate=False, + verbose=False, ) branch = c["data"]["kernel_revision"].get("branch")