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
Fix CI: type TupleManager.__init__ precisely instead of Any
ruff's ANN401 rule (enabled repo-wide) disallows a bare `Any` annotation on
*args/**kwargs, which failed every CI build. Replace the *args/**kwargs
signature with the actual accepted shape -- a single Mapping[str, T] or
Iterable[tuple[str, T]] positional argument, defaulting to () to match
dict()'s no-arg behavior, plus **kwargs: T -- which also lets mypy check the
guard logic against a real type instead of Any.
0 commit comments