()
| 118 | sessionList.sort() |
| 119 | |
| 120 | def listSessions(): |
| 121 | global sessionList |
| 122 | if len(sessionList) == 0: |
| 123 | createSessionList() |
| 124 | count = 1; |
| 125 | for session in sessionList: |
| 126 | print('[%d]' %(count), end="") |
| 127 | count += 1 |
| 128 | print(session) |
| 129 | |
| 130 | if len(sessionList) == 0: |
| 131 | print('No checkpoint sessions found') |
| 132 | |
| 133 | def removeSession(sessionId = 0): |
| 134 | print("TODO") |
nothing calls this directly
no test coverage detected