Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
zm711 committed Oct 4, 2023
1 parent 8aca105 commit 3833b4c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/spikeanalysis/spike_plotter.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 3833b4c

Please sign in to comment.