fix: Resolve TypeVars in generic TypedDict inheritance with Unpack by kitagry · Pull Request #1922 · facebook/pyrefly

Summary Pyrefly incorrectly reports type errors when using Unpack with a TypedDict that has a TypeVar in its generic parameter. Pyright handles this correctly. Problem When using Unpack[Child[int]]...