Complete allow_style values.
(_cli_self: Cmd)
| 1295 | """Create the dictionary of user-settable parameters.""" |
| 1296 | |
| 1297 | def get_allow_style_choices(_cli_self: Cmd) -> Choices: |
| 1298 | """Complete allow_style values.""" |
| 1299 | styles = [val.name.lower() for val in ru.AllowStyle] |
| 1300 | return Choices.from_values(styles) |
| 1301 | |
| 1302 | def allow_style_type(value: str) -> ru.AllowStyle: |
| 1303 | """Convert a string value into an ru.AllowStyle.""" |
nothing calls this directly
no test coverage detected