(row: List[str])
| 41 | |
| 42 | |
| 43 | def is_section_row(row: List[str]) -> bool: |
| 44 | # ['ceval', '-', '-', '-', '-'], |
| 45 | return row[-1] == '-' and row[0][0] == '-' |
| 46 | |
| 47 | |
| 48 | def average_rows(name, rows: List[List[str]]) -> List[str]: |
no outgoing calls
no test coverage detected