Skip to content

Commit

Permalink
🐛 Fix bug in _repr_html
Browse files Browse the repository at this point in the history
  • Loading branch information
arafune committed Mar 15, 2024
1 parent f7978fd commit 32fadf2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/arpes/xarray_extensions.py
Original file line number Diff line number Diff line change
Expand Up @@ -1769,7 +1769,7 @@ def _repr_html_(self) -> str:
elif 1 <= len(self._obj.dims) < 3: # noqa: PLR2004
_, ax = plt.subplots(1, 1, figsize=(4, 3))
self._obj.T.plot(ax=ax)
fancy_labels(ax)
fancy_labels(ax, data=self._obj)
ax.set_title("")

remove_colorbars()
Expand Down

0 comments on commit 32fadf2

Please sign in to comment.