A help screen string listing the possible action kinds available.
(possible_actions)
| 370 | |
| 371 | |
| 372 | def _GetPossibleActionsString(possible_actions): |
| 373 | """A help screen string listing the possible action kinds available.""" |
| 374 | return ' | '.join(formatting.Underline(action.upper()) |
| 375 | for action in possible_actions) |
| 376 | |
| 377 | |
| 378 | def _GetActionsGroupedByKind(component, verbose=False): |
no test coverage detected