Skip to content

Commit

Permalink
Remove star unpack after keyword argument
Browse files Browse the repository at this point in the history
  • Loading branch information
hoxbro committed Sep 22, 2023
1 parent 795a48e commit 3163a6a
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions holoviews/core/overlay.py
Original file line number Diff line number Diff line change
Expand Up @@ -287,11 +287,10 @@ def ddims(self):
def shape(self):
raise NotImplementedError

def clone(self, data=None, shared_data=True, new_type=None, link=True,
*args, **overrides):
def clone(self, data=None, shared_data=True, new_type=None, link=True, **overrides):
if data is None and link:
overrides['plot_id'] = self._plot_id
return super().clone(data, shared_data=shared_data, new_type=new_type, link=link, *args, **overrides)
return super().clone(data, shared_data=shared_data, new_type=new_type, link=link, **overrides)


class NdOverlay(Overlayable, UniformNdMapping, CompositeOverlay):
Expand Down

0 comments on commit 3163a6a

Please sign in to comment.