We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ee88b81 commit 9f49d1aCopy full SHA for 9f49d1a
cmd2/argparse_completer.py
@@ -226,7 +226,7 @@ def complete(
226
matched_flags: list[str] = []
227
228
# Keeps track of arguments we've seen and any tokens they consumed
229
- consumed_arg_values: dict[str, list[str]] = {}
+ consumed_arg_values: dict[str, list[str]] = {} # dict(arg_name -> list[tokens])
230
231
# Completed mutually exclusive groups
232
completed_mutex_groups: dict[argparse._MutuallyExclusiveGroup, argparse.Action] = {}
0 commit comments