Skip to content

Commit

Permalink
Consistently use method syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
philippjfr committed Nov 17, 2020
1 parent ae89d53 commit e8864b1
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion examples/user_guide/Interactive.ipynb
Expand Up @@ -334,7 +334,7 @@
" pn.Spacer(width=20),\n",
" pn.Column(\n",
" pn.panel(\"## Select a time and type of plot\", width=400),\n",
" interactive.widgets\n",
" interactive.widgets()\n",
" ),\n",
" pn.panel(\"https://panel.holoviz.org/_static/logo_stacked.png\", width=100)\n",
" ),\n",
Expand Down
2 changes: 0 additions & 2 deletions hvplot/interactive.py
Expand Up @@ -375,7 +375,6 @@ def layout(self):
components = [Column(panel, widgets)]
return Row(*components)

@property
def output(self):
"""
Returns the output of the interactive pipeline, which is
Expand All @@ -387,7 +386,6 @@ def output(self):
"""
return self.dmap() if self._dmap else self.panel(**self._kwargs)

@property
def widgets(self):
"""
Returns a Column of widgets which control the interactive output.
Expand Down

0 comments on commit e8864b1

Please sign in to comment.