(self, *args)
| 5 | |
| 6 | class TechMPlot(object): |
| 7 | def __init__(self, *args): |
| 8 | self.fig = plt.figure() |
| 9 | self.cross_cursor = None |
| 10 | self.v_cursor = None |
| 11 | self.add_subplot(*args) |
| 12 | self.in_qt = False |
| 13 | for ax in self.axes: |
| 14 | ax.format_coord = self.format_coord |
| 15 | self.connect() |
| 16 | |
| 17 | def init_qt(self): |
| 18 | """docstring for set_qt""" |
nothing calls this directly
no test coverage detected