From 4f2a5026f0e0001def09c09d1fbe6b00bb470730 Mon Sep 17 00:00:00 2001 From: Philipp Rudiger Date: Tue, 1 Oct 2019 03:40:19 +0200 Subject: [PATCH] Ensure that ParamFunction takes precedence in py2 (#667) --- panel/param.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/panel/param.py b/panel/param.py index 4ab9dd390b..5798b296be 100644 --- a/panel/param.py +++ b/panel/param.py @@ -658,6 +658,8 @@ class ParamFunction(ParamMethod): a widget to some other output. """ + priority = 0.6 + def _link_object_params(self): deps = self.object._dinfo dep_params = list(deps['dependencies']) + list(deps.get('kw', {}).values())