You signed in with another tab or window.Reload to refresh your session.You signed out in another tab or window.Reload to refresh your session.You switched accounts on another tab or window.Reload to refresh your session.Dismiss alert
refactor: avoid possible breaking change in iterator (#2107)
Commitb644721 inadvertentlyintroduced a possible breaking change as it added a new argument`iterator` and added it in between existing (potentially positional) arguments.This moves the `iterator` argument to the end of the argument list andrequires it to be a keyword-only argument.