Skip to content

Commit

Permalink
Fixed signature of get_extents in GenericElementPlot base class
Browse files Browse the repository at this point in the history
  • Loading branch information
jlstevens committed Jun 12, 2023
1 parent 7b1ed5a commit 615f553
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion holoviews/plotting/plot.py
Original file line number Diff line number Diff line change
Expand Up @@ -1393,7 +1393,7 @@ def _get_range_extents(self, element, ranges, range_type, xdim, ydim, zdim):

return (x0, y0, x1, y1)

def get_extents(self, element, ranges, range_type='combined', xdim=None, ydim=None, zdim=None):
def get_extents(self, element, ranges, range_type='combined', dimension=None, xdim=None, ydim=None, zdim=None):
"""
Gets the extents for the axes from the current Element. The globally
computed ranges can optionally override the extents.
Expand Down

0 comments on commit 615f553

Please sign in to comment.