Skip to content

Commit d7898de

Browse files
author
Jeny Sadadia
committed
Remove unnecessary print while getting builds history
Signed-off-by: Jeny Sadadia <[email protected]>
1 parent 62f3c04 commit d7898de

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
@@ -368,10 +368,10 @@ def get_checkouts(ctx, giturl, branch, days):
368368
]
369369
checkouts = ctx.invoke(
370370
results,
371-
count=True,
372371
nodes=True,
373372
filter=filters,
374373
paginate=False,
374+
verbose=False,
375375
)
376376
return checkouts
377377

@@ -391,10 +391,10 @@ def get_builds_history(ctx, checkouts, arch):
391391
filters.append(f"data.arch={arch}")
392392
maestro_builds = ctx.invoke(
393393
results,
394-
count=True,
395394
nodes=True,
396395
filter=filters,
397396
paginate=False,
397+
verbose=False,
398398
)
399399

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

0 commit comments

Comments
 (0)