Anyone out there have a solution or workaround for this?
https://github.com/python/mypy/issues/14023
Right now I'm doing:
```
# wrapper type is Callable[[Iterable[T]], Iterable[T]]
k: KeyType
v: ValueType
for k, v in wrapper(my_dict.items()): # type: ignore
...
```
Which is fine for a temporary workaround, but it'd be better to have a proper workaround for the time being.