(self)
| 30 | self.validateChooseValue() |
| 31 | |
| 32 | def validateChooseValue(self): |
| 33 | if self.choose in range(1, self.streamNo): |
| 34 | self.getStream() |
| 35 | else: |
| 36 | print("please enter a currect option on the list.") |
| 37 | self.chooseStream() |
| 38 | |
| 39 | def getStream(self): |
| 40 | self.stream = self.youtube.streams[self.choose - 1] |
no test coverage detected