Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
eliottrosenberg committed Jan 25, 2024
1 parent 86eb0dd commit 6890e98
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ def plot_heatmap(
_, axs = plt.subplots(1, 2, dpi=200, facecolor='white', figsize=(12, 4))

else:
if not len(axes) != 2 or type(axs[0]) != plt.Axes or type(axs[1]) != plt.Axes:
if not len(axs) != 2 or type(axs[0]) != plt.Axes or type(axs[1]) != plt.Axes:
raise ValueError('axs should be a length-2 tuple of plt.Axes')
for ax, title, data in zip(
axs,
Expand Down

0 comments on commit 6890e98

Please sign in to comment.