-
-
Notifications
You must be signed in to change notification settings - Fork 8.3k
FuncAnimation Named Arguments #20326
Copy link
Copy link
Closed
Labels
DocumentationGood first issueOpen a pull request against these issues if there are no active ones!Open a pull request against these issues if there are no active ones!topic: animation
Milestone
Metadata
Metadata
Assignees
Labels
DocumentationGood first issueOpen a pull request against these issues if there are no active ones!Open a pull request against these issues if there are no active ones!topic: animation
Problem
I would like to use named arguments in FuncAnimation.
Currently:
This would be slightly cumbersome when I change the order / type of arguments my function accepts. I could use
functoolsto attach named parameters to the functionupdate, but it would be nice ifFuncAnimationcan support this feature.Proposed Solution
We keep the
fargsparameter, but we also add anfkwargsfor keyword parameters.