(self, change)
| 605 | |
| 606 | @observe("show_fit_opt") |
| 607 | def _update_fit(self, change): |
| 608 | if change["type"] != "create": |
| 609 | self.update_fit_plots(visible=bool(change["value"])) |
| 610 | |
| 611 | def update_fit_plots(self, visible=True): |
| 612 | for v in self.plot_fit_obj: |
nothing calls this directly
no test coverage detected