(mutaplasmid)
| 17 | |
| 18 | |
| 19 | def nameSorter(mutaplasmid): |
| 20 | name = mutaplasmid.shortName |
| 21 | if name.startswith(GLORIFIED_PREFIX): |
| 22 | return name[len(GLORIFIED_PREFIX):], True |
| 23 | return name, False |
| 24 | |
| 25 | |
| 26 | class ChangeItemMutation(ContextMenuSingle): |
nothing calls this directly
no outgoing calls
no test coverage detected