Skip to content

Commit

Permalink
fix: scatter alpha bug (#280)
Browse files Browse the repository at this point in the history
  • Loading branch information
ianhi committed Jun 26, 2023
1 parent f0c0cd3 commit 10b1a27
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mpl_interactions/pyplot.py
Expand Up @@ -566,7 +566,7 @@ def update(params, indices, cache):
s_ = check_callable_xy(s, x_, y_, param_excluder(params, "s"), cache)
ec_ = check_callable_xy(edgecolors, x_, y_, param_excluder(params), cache)
fc_ = check_callable_xy(facecolors, x_, y_, param_excluder(params), cache)
a_ = (callable_else_value_no_cast(alpha, param_excluder(params, "alpha"), cache),)
a_ = callable_else_value_no_cast(alpha, param_excluder(params, "alpha"), cache)
marker_ = callable_else_value_no_cast(marker, param_excluder(params), cache)

if marker_ is not None:
Expand Down

0 comments on commit 10b1a27

Please sign in to comment.