Skip to content

Commit

Permalink
setdefault edgecolors to edgecolor
Browse files Browse the repository at this point in the history
  • Loading branch information
sarahclaude committed Apr 4, 2024
1 parent ecd17ea commit ade2a4b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion figanos/matplotlib/plot.py
Original file line number Diff line number Diff line change
Expand Up @@ -1701,7 +1701,7 @@ def scattermap(
plot_kw_pop["edgecolors"] = np.array(plot_kw["edgecolors"])
plot_kw_pop["edgecolors"] = plot_kw_pop["edgecolors"][mask]
else:
plot_kw_pop.setdefault("edgecolors", "none")
plot_kw_pop.setdefault("edgecolor", "none")

for key in ["vmin", "vmax"]:
plot_kw_pop.pop(key)
Expand Down

0 comments on commit ade2a4b

Please sign in to comment.