Tab complete lowercase boolean values.
(_cmd2_self: CmdOrSet)
| 117 | from .completion import Choices |
| 118 | |
| 119 | def get_bool_choices(_cmd2_self: CmdOrSet) -> Choices: |
| 120 | """Tab complete lowercase boolean values.""" |
| 121 | return Choices.from_values(["true", "false"]) |
| 122 | |
| 123 | val_type = to_bool |
| 124 | choices_provider = get_bool_choices |
nothing calls this directly
no test coverage detected