(self, datetime)
| 25 | super().__init__(DateTimeScaleFormatter.Hour, "hh") |
| 26 | |
| 27 | def nextRangeBegin(self, datetime): |
| 28 | return self.currentRangeBegin(datetime).addSecs(60 * 10) |
| 29 | |
| 30 | def currentRangeBegin(self, datetime): # pylint: disable=no-self-use |
| 31 | dtInstance = QDateTime(datetime) |
nothing calls this directly
no test coverage detected