From 23ce3997abde73105c4332ac2dbb4a480f6bd1ca Mon Sep 17 00:00:00 2001 From: Hofer-Julian Date: Wed, 25 Oct 2023 09:14:49 +0200 Subject: [PATCH] Add pass at the end instead of semicolon --- docs/python/examples.ipynb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/python/examples.ipynb b/docs/python/examples.ipynb index 6382d5967..ce50ffd93 100644 --- a/docs/python/examples.ipynb +++ b/docs/python/examples.ipynb @@ -1417,7 +1417,8 @@ "# Plot target level\n", "target_levels = model.pid_control.time.target.to_numpy()[::2]\n", "times = date2num(model.pid_control.time.time)[::2]\n", - "ax.plot(times, target_levels, color=\"k\", ls=\":\", label=\"target level\")" + "ax.plot(times, target_levels, color=\"k\", ls=\":\", label=\"target level\")\n", + "pass" ] }, {