all groups have same length
(groups)
| 195 | |
| 196 | |
| 197 | def _sizes_all_same(groups): |
| 198 | """all groups have same length""" |
| 199 | all_same = True |
| 200 | for g in groups: |
| 201 | if len(g) != len(groups[0]): |
| 202 | return False |
| 203 | return all_same |
no outgoing calls
no test coverage detected
searching dependent graphs…