From 838c5ac9f9b07fe42e1614b3ccbf51560e6121c0 Mon Sep 17 00:00:00 2001 From: Roland Walker Date: Sat, 21 Mar 2026 16:11:05 -0400 Subject: [PATCH] display password metavar as TEXT, not STRING to match other items in the helpdoc --- mycli/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mycli/main.py b/mycli/main.py index d5f2b403..28dd98df 100755 --- a/mycli/main.py +++ b/mycli/main.py @@ -143,7 +143,7 @@ def complete_while_typing_filter() -> bool: class IntOrStringClickParamType(click.ParamType): - name = 'string' # display as STRING in helpdoc + name = 'text' # display as TEXT in helpdoc def convert(self, value, param, ctx): if isinstance(value, int):