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
See: [#4617](#4617)
This allows the following code to trigger the error
`typeddict-unknown-key`
```python
A = T.TypedDict("A", {"x": int})
def f(x: A) -> None:
...
f({"x": 1, "y": "foo"})
```
The user can then safely ignore this specific error at their
disgression.
0 commit comments