Skip to content

Commit

Permalink
Fixed indentation in GenericOverlayPlot
Browse files Browse the repository at this point in the history
  • Loading branch information
philippjfr committed Nov 4, 2016
1 parent 110cdc3 commit 8bd833f
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions holoviews/plotting/plot.py
Original file line number Diff line number Diff line change
Expand Up @@ -862,16 +862,15 @@ def _create_subplots(self, ranges):
if len(ordering) > self.legend_limit:
opts['show_legend'] = False
style = self.lookup_options(vmap.last, 'style').max_cycles(group_length)
passed_handles = {k: v for k, v in self.handles.items()
if k in self._passed_handles}
plotopts = dict(opts, cyclic_index=cyclic_index,
invert_axes=self.invert_axes,
dimensions=self.dimensions,
keys=self.keys,
dimensions=self.dimensions, keys=self.keys,
layout_dimensions=self.layout_dimensions,
ranges=ranges, show_title=self.show_title,
style=style, uniform=self.uniform,
zorder=zorder, **{k: v for k, v in
self.handles.items() if k in
self._passed_handles})
zorder=zorder, **passed_handles)

if not isinstance(key, tuple): key = (key,)
subplots[key] = plottype(vmap, **plotopts)
Expand Down

0 comments on commit 8bd833f

Please sign in to comment.