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