Skip to content

Commit

Permalink
minor fix for holoviz#316
Browse files Browse the repository at this point in the history
  • Loading branch information
dwr-psandhu authored Nov 21, 2023
1 parent 5b5eb2e commit 81d95b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion geoviews/plotting/bokeh/plot.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ def _update_ranges(self, element, ranges):
if (end-start) < min_interval:
mid = (start+end)/2.
ax_range.start = mid - min_interval/2.
ax_range.start = mid + min_interval/2.
ax_range.end = mid + min_interval/2.
ax_range.min_interval = min_interval

def initialize_plot(self, ranges=None, plot=None, plots=None, source=None):
Expand Down

0 comments on commit 81d95b5

Please sign in to comment.