From 522506597ad3b9271fa9d1e8a8ac4a272e287064 Mon Sep 17 00:00:00 2001 From: Niru Maheswaranathan Date: Sat, 17 May 2025 11:07:23 -0700 Subject: [PATCH] Remove debug print from yclamp --- jetplot/chart_utils.py | 1 - 1 file changed, 1 deletion(-) diff --git a/jetplot/chart_utils.py b/jetplot/chart_utils.py index 2c54cb8..1f566e3 100644 --- a/jetplot/chart_utils.py +++ b/jetplot/chart_utils.py @@ -190,7 +190,6 @@ def yclamp(y0=None, y1=None, dt=None, **kwargs): y0 = lims[0] if y0 is None else y0 y1 = lims[1] if y1 is None else y1 dt = np.mean(np.diff(ax.get_yticks())) if dt is None else dt - print("hello world") new_ticks = np.arange(dt * np.floor(y0 / dt), dt * (np.ceil(y1 / dt) + 1), dt) ax.set_yticks(new_ticks)