feature: update I/O methods to use questionary where applicable #2

Merged
jt merged 14 commits from feature/refactor-use-questionary-package into main 2026-07-18 01:12:23 +00:00
Showing only changes of commit 7315681b23 - Show all commits
+1 -1
View File
@@ -24,7 +24,7 @@ def commit():
commit_message = base.io_prompt(
"Mensaje de commit",
validator=lambda s: 0 < len(s) and len(s) < 100,
instruction="100 caracteres máximo"
instruction="100 caracteres máximo",
)
message = commit_type + ": " + commit_message