(typer_instance: Typer)
| 1161 | |
| 1162 | |
| 1163 | def get_group(typer_instance: Typer) -> TyperGroup: |
| 1164 | group = get_group_from_info( |
| 1165 | TyperInfo(typer_instance), |
| 1166 | pretty_exceptions_short=typer_instance.pretty_exceptions_short, |
| 1167 | rich_markup_mode=typer_instance.rich_markup_mode, |
| 1168 | suggest_commands=typer_instance.suggest_commands, |
| 1169 | ) |
| 1170 | return group |
| 1171 | |
| 1172 | |
| 1173 | def get_command(typer_instance: Typer) -> _click.Command: |
no test coverage detected
searching dependent graphs…