(name, choices)
| 614 | |
| 615 | |
| 616 | def _NewChoicesSection(name, choices): |
| 617 | name_formatted = formatting.Bold(formatting.Underline(name)) |
| 618 | return _CreateItem( |
| 619 | f'{name_formatted} is one of the following:', |
| 620 | '\n' + '\n\n'.join(choices), |
| 621 | indent=1) |
| 622 | |
| 623 | |
| 624 | def UsageText(component, trace=None, verbose=False): |
no test coverage detected