Skip to content

Commit

Permalink
fix nb_template in templates (#1660)
Browse files Browse the repository at this point in the history
  • Loading branch information
xavArtley authored Oct 20, 2020
1 parent cf771c4 commit e6cd624
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion panel/template/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -600,7 +600,7 @@ class Template(BaseTemplate):
"""

def __init__(self, template=None, nb_template=None, items=None, **params):
super(Template, self).__init__(template, nb_template, **params)
super(Template, self).__init__(template=template, nb_template=nb_template, items=items, **params)
items = {} if items is None else items
for name, item in items.items():
self.add_panel(name, item)
Expand Down

0 comments on commit e6cd624

Please sign in to comment.