From 626e078dd15583dec60c2a71fc9d907dbf259054 Mon Sep 17 00:00:00 2001 From: Uwe Schwaeke Date: Mon, 16 Mar 2026 12:17:35 +0100 Subject: [PATCH] crt/cmds/patchset: remove print statement * what: remove the leftover `print("prompt?")` statement. * why: clean up code based on PR review feedback. see [#47](https://github.com/clyso/cbs/issues/47) Signed-off-by: Uwe Schwaeke --- crt/src/crt/cmds/patchset.py | 1 - 1 file changed, 1 deletion(-) diff --git a/crt/src/crt/cmds/patchset.py b/crt/src/crt/cmds/patchset.py index e6540a6f..04778ae1 100644 --- a/crt/src/crt/cmds/patchset.py +++ b/crt/src/crt/cmds/patchset.py @@ -351,7 +351,6 @@ def cmd_patchset_create( release_name: str | None, assume_no: bool, ) -> None: - print("prompt?") if not patchset_title: patchset_title = cast( str | None, click.prompt("Patch set title", type=str, prompt_suffix=" > ")