(self, currPhaseIndex: int)
| 156 | return self.preDefPhases[currPhaseIndex] |
| 157 | |
| 158 | def nextPhase(self, currPhaseIndex: int) -> str: |
| 159 | if currPhaseIndex < len(self.preDefPhases)-1: |
| 160 | return self.preDefPhases[currPhaseIndex+1] |
| 161 | else: |
| 162 | return self.preDefPhases[0] |
| 163 | |
| 164 | |
| 165 | @dataclass |
no outgoing calls
no test coverage detected