(worksheet, i)
| 15 | |
| 16 | |
| 17 | def alpha(worksheet, i): |
| 18 | a = excel.cell(worksheet, (1, 1), step_column=3, index=i).value |
| 19 | if not a: |
| 20 | return |
| 21 | assert a.startswith('alpha=') |
| 22 | return a[len('alpha='):][0:4] |
| 23 | |
| 24 | |
| 25 | def draw_ordered_ranks(worksheet): |
no outgoing calls
no test coverage detected