Skip to content

Commit

Permalink
Fix warning from using deprecated method with size argument
Browse files Browse the repository at this point in the history
  • Loading branch information
kcreekdev committed Apr 13, 2024
1 parent df4c3c0 commit 2bc7890
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ccc/calculator.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down Expand Up @@ -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,
Expand Down

0 comments on commit 2bc7890

Please sign in to comment.