Update the plot.
(self)
| 1407 | return line |
| 1408 | |
| 1409 | def update_plot(self): |
| 1410 | """Update the plot.""" |
| 1411 | with warnings.catch_warnings(record=True): |
| 1412 | warnings.filterwarnings("ignore", "constrained_layout") |
| 1413 | self.canvas.draw() |
| 1414 | |
| 1415 | def set_color(self, bg_color, fg_color): |
| 1416 | """Set the widget colors.""" |
no outgoing calls
no test coverage detected