From f484b6b386a089462874d0f806646d8f09392f4e Mon Sep 17 00:00:00 2001 From: Fede Raimondo Date: Thu, 4 Apr 2024 16:23:18 +0200 Subject: [PATCH] Fix for warnings from bokeh --- julearn/viz/_scores.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/julearn/viz/_scores.py b/julearn/viz/_scores.py index f038fb12a..d155d6caa 100644 --- a/julearn/viz/_scores.py +++ b/julearn/viz/_scores.py @@ -193,7 +193,7 @@ def plot_scores(self): ) p.add_layout(labels) return p - p.circle( + p.scatter( x=jitter("x", width=0.7, range=p.x_range), y="score", alpha=0.5, @@ -385,7 +385,6 @@ def plot_scores( widgets={ "metric": { "type": pn.widgets.Select, - "button_type": "primary", "name": "", } },