Method
__init__
(self, config_path, parent=None)
Source from the content-addressed store, hash-verified
| 524 | |
| 525 | class SkeletonBuilder(QtWidgets.QDialog, BaseSkeletonBuilder): |
| 526 | def __init__(self, config_path, parent=None): |
| 527 | QtWidgets.QDialog.__init__(self, parent) |
| 528 | self._parent = parent |
| 529 | self.setWindowTitle("Skeleton Builder") |
| 530 | BaseSkeletonBuilder.__init__(self, config_path) |
| 531 | |
| 532 | def build_ui(self): |
| 533 | self.fig = Figure() |
Callers
nothing calls this directly
Tested by
no test coverage detected