Skip to content

Commit 10b1a27

Browse files
authored
fix: scatter alpha bug (#280)
1 parent f0c0cd3 commit 10b1a27

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mpl_interactions/pyplot.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -566,7 +566,7 @@ def update(params, indices, cache):
566566
s_ = check_callable_xy(s, x_, y_, param_excluder(params, "s"), cache)
567567
ec_ = check_callable_xy(edgecolors, x_, y_, param_excluder(params), cache)
568568
fc_ = check_callable_xy(facecolors, x_, y_, param_excluder(params), cache)
569-
a_ = (callable_else_value_no_cast(alpha, param_excluder(params, "alpha"), cache),)
569+
a_ = callable_else_value_no_cast(alpha, param_excluder(params, "alpha"), cache)
570570
marker_ = callable_else_value_no_cast(marker, param_excluder(params), cache)
571571

572572
if marker_ is not None:

0 commit comments

Comments
 (0)