(self)
| 1317 | range(0, 24), range(0, 60), range(0, 60), None] |
| 1318 | |
| 1319 | def __call__(self): |
| 1320 | # docstring inherited |
| 1321 | dmin, dmax = self.viewlim_to_dt() |
| 1322 | locator = self.get_locator(dmin, dmax) |
| 1323 | return locator() |
| 1324 | |
| 1325 | def tick_values(self, vmin, vmax): |
| 1326 | return self.get_locator(vmin, vmax).tick_values(vmin, vmax) |
nothing calls this directly
no test coverage detected