From 2bc7890b1b9b1268779f545b1a780e14b5178d9c Mon Sep 17 00:00:00 2001 From: Kcreek Dev Date: Sat, 13 Apr 2024 12:36:17 -0400 Subject: [PATCH] Fix warning from using deprecated method with size argument --- ccc/calculator.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ccc/calculator.py b/ccc/calculator.py index 9050a471..6477aa3e 100644 --- a/ccc/calculator.py +++ b/ccc/calculator.py @@ -1808,7 +1808,7 @@ def bubble_widget( p2.xaxis.major_tick_line_width = 3 p2.xaxis.minor_tick_line_color = "orange" - p2.circle( + p2.scatter( x="rate", y="short_category", color=RED, @@ -2201,7 +2201,7 @@ def asset_bubble( p2.xaxis.major_tick_line_width = 3 p2.xaxis.minor_tick_line_color = "orange" - p2.circle( + p2.scatter( x="baseline", y="short_category", color=RED,