Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions website/docs/error-kinds.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -1778,8 +1778,7 @@ For example, read-only and required `TypedDict` fields cannot be deleted.
This error arises when attempting to perform an operation between values of two incompatible types.

```python
if "hello" in 1: # int doesn't support `in`!
...
x = 1 + "oops" # `+` is not supported between `int` and `str` [unsupported-operation]
```

## untyped-import
Expand Down
Loading