Return the column letter that comes after column. Returns '' if column 'H'.
(column)
| 113 | |
| 114 | |
| 115 | def nextCol(column): |
| 116 | """Return the column letter that comes after column. |
| 117 | |
| 118 | Returns '' if column 'H'.""" |
| 119 | return {'': '', 'A': 'B', 'B': 'C', 'C': 'D', 'D': 'E', |
| 120 | 'E': 'F', 'F': 'G', 'G': 'H', 'H': ''}[column] |
| 121 | |
| 122 | |
| 123 | def otherCheckers(checker): |
no outgoing calls
no test coverage detected