Skip to content

Commit

Permalink
BUG: consume kwargs in annotate_arrow
Browse files Browse the repository at this point in the history
  • Loading branch information
neutrinoceros committed Jul 6, 2022
1 parent fc06d7a commit 27de174
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion yt/visualization/plot_modifications.py
Original file line number Diff line number Diff line change
Expand Up @@ -1650,7 +1650,7 @@ def __init__(
"You can now pass arbitrary keyword arguments instead of a dictionary.",
since="4.1.0",
)
plot_args = {**def_plot_args, **plot_args}
plot_args = {**def_plot_args, **plot_args, **kwargs}
else:
plot_args = def_plot_args
self.plot_args = plot_args
Expand Down

0 comments on commit 27de174

Please sign in to comment.