(diag, frame)
| 1520 | super(EditDialog, self).__init__(*args, **kwargs) |
| 1521 | |
| 1522 | def body(diag, frame): |
| 1523 | self._make_fields( |
| 1524 | frame, |
| 1525 | [(x, diag.initial_values.get(x, "")) for x in headers], |
| 1526 | datastore=diag.data, |
| 1527 | ) |
| 1528 | return frame |
| 1529 | |
| 1530 | def ok(self, *args, **kwargs): |
| 1531 | self.success = True |
nothing calls this directly
no test coverage detected