(fig: Figure, axes: AnyNDArray)
| 108 | tmp_path_str = str(tmp_path) |
| 109 | |
| 110 | def plotting_cb(fig: Figure, axes: AnyNDArray) -> None: |
| 111 | axes[0, 0].plot(np.random.randn(2), np.random.randn(2)) |
| 112 | axes[1, 0].plot(np.random.randn(2), np.random.randn(2)) |
| 113 | axes[0, 1].plot(np.random.randn(2), np.random.randn(2)) |
| 114 | axes[1, 1].plot(np.random.randn(2), np.random.randn(2)) |
| 115 | |
| 116 | fig_kwargs = dict(figsize=(10, 10)) |
| 117 | subplots_kwargs = dict(sharex=True, nrows=2, ncols=2) |
nothing calls this directly
no test coverage detected
searching dependent graphs…