Skip to content

Commit b7fe900

Browse files
committed
❌🐛 Early exit plotting to debug other errors
1 parent 57c3137 commit b7fe900

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

pyglotaran_extras/plotting/plot_overview.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,7 @@ def plot_overview(
117117
-------
118118
tuple[Figure, Axes]
119119
"""
120+
return plt.subplots(4, 3, figsize=figsize, constrained_layout=True)
120121
res = load_data(result, _stacklevel=3)
121122

122123
if das_cycler is Unset:
@@ -221,6 +222,7 @@ def plot_simple_overview(
221222
-------
222223
tuple[Figure, Axes]
223224
"""
225+
return plt.subplots(2, 3, figsize=figsize, constrained_layout=True)
224226
res = load_data(result, _stacklevel=3)
225227
if svd_cycler is Unset:
226228
svd_cycler = cycler

0 commit comments

Comments
 (0)