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
Fixes#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"}) # err: typeddict-unknown-key
f({"y": "foo"}) # err: typeddict-unknown-key & typeddict-item
f({"x": 'err', "y": "foo"}) # err: typeddict-unknown-key & typeddict-item
a: A = { 'x': 1 }
# You can set extra attributes
a['extra'] = 'extra' # err: typeddict-unknown-key
# Reading them produces the normal item error
err = a['does not exist'] # err: typeddict-item
```
The user can then safely ignore this specific error at their
disgression.
Co-authored-by: Ivan Levkivskyi <[email protected]>
0 commit comments