The list of possible action kinds.
(actions_grouped_by_kind)
| 361 | |
| 362 | |
| 363 | def _GetPossibleActions(actions_grouped_by_kind): |
| 364 | """The list of possible action kinds.""" |
| 365 | possible_actions = [] |
| 366 | for action_group in actions_grouped_by_kind: |
| 367 | if action_group.members: |
| 368 | possible_actions.append(action_group.name) |
| 369 | return possible_actions |
| 370 | |
| 371 | |
| 372 | def _GetPossibleActionsString(possible_actions): |
no outgoing calls
no test coverage detected