Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ultraplot/axes/plot.py
Original file line number Diff line number Diff line change
Expand Up @@ -3668,7 +3668,7 @@ def _inbounds_xylim(self, extents, x, y, **kwargs):
return
if self._name != "cartesian":
return
if not x.size or not y.size:
if not getattr(x, "size", None) or not getattr(y, "size", None):
return
kwargs, vert = _get_vert(**kwargs)
if not vert:
Expand Down
Loading