diff --git a/src/spikeanalysis/spike_plotter.py b/src/spikeanalysis/spike_plotter.py index f6e38dc..0949c17 100644 --- a/src/spikeanalysis/spike_plotter.py +++ b/src/spikeanalysis/spike_plotter.py @@ -889,7 +889,7 @@ def _plot_one_trace( to let it autoscale """ fig, ax = plt.subplots(figsize=self.figsize) - ax.plot(bins, trace, color=color, linewidthh=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)