()
| 971 | |
| 972 | |
| 973 | def get_subtitle(): |
| 974 | applying_groups = list(filter(lambda x: x.num_applies() > 0, state.todo_groups)) |
| 975 | done_groups = sum(1 for x in applying_groups if x.is_done()) |
| 976 | return "Please complete the below checklist (Complete: %s/%s)" % (done_groups, len(applying_groups)) |
| 977 | |
| 978 | |
| 979 | def get_todo_menuitem_title(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…