Skip to content

Commit

Permalink
Fixed usage of old param API in util (#992)
Browse files Browse the repository at this point in the history
  • Loading branch information
jlstevens authored and philippjfr committed Jan 23, 2020
1 parent 318ff5b commit 3ce6faa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion panel/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ def param_reprs(parameterized, skip=None):
"""
cls = type(parameterized).__name__
param_reprs = []
for p, v in sorted(parameterized.get_param_values()):
for p, v in sorted(parameterized.param.get_param_values()):
default = parameterized.param[p].default
equal = v is default
if not equal:
Expand Down

0 comments on commit 3ce6faa

Please sign in to comment.