From c9089b022f3bd10b2002b2d8e703f769513a266c Mon Sep 17 00:00:00 2001 From: David Stansby Date: Mon, 25 Feb 2019 12:13:34 +0000 Subject: [PATCH] Backport PR #13511: Add missing plt.show() at end of example. --- examples/subplots_axes_and_figures/subplots_demo.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/examples/subplots_axes_and_figures/subplots_demo.py b/examples/subplots_axes_and_figures/subplots_demo.py index 2f4b5efbdb2a..d1cb4dbf8527 100644 --- a/examples/subplots_axes_and_figures/subplots_demo.py +++ b/examples/subplots_axes_and_figures/subplots_demo.py @@ -187,3 +187,5 @@ fig, (ax1, ax2) = plt.subplots(1, 2, subplot_kw=dict(projection='polar')) ax1.plot(x, y) ax2.plot(x, y ** 2) + +plt.show()