(charge)
| 195 | else: |
| 196 | |
| 197 | def nameSorter(charge): |
| 198 | parts = charge.name.split(" ") |
| 199 | return [int(p) if p.isdigit() else p for p in parts] |
| 200 | |
| 201 | return 'general', {'general': sorted(chargesFlat, key=nameSorter)} |
nothing calls this directly
no outgoing calls
no test coverage detected