From 7dba992ad29e77b133e041422225ba9a486fffde Mon Sep 17 00:00:00 2001 From: zm711 <92116279+zm711@users.noreply.github.com> Date: Wed, 4 Oct 2023 17:25:18 -0400 Subject: [PATCH] typo fix --- src/spikeanalysis/spike_plotter.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/spikeanalysis/spike_plotter.py b/src/spikeanalysis/spike_plotter.py index 2e6c286..c5d3b89 100644 --- a/src/spikeanalysis/spike_plotter.py +++ b/src/spikeanalysis/spike_plotter.py @@ -894,7 +894,7 @@ def _plot_one_trace( to let it autoscale """ fig, ax = plt.subplots(figsize=self.figsize) - ax.plot(bins, trace, color=color, linewdith=0.75) + ax.plot(bins, trace, color=color, linewidth=0.75) max_pt = np.max(trace) if ebars is not None: ax.plot(bins, trace + ebars, color=color, linewidth=0.25)