[ty] Uniformly use "not supported" in diagnostics (#21916)

This commit is contained in:
Luca Chiodini
2025-12-11 16:03:55 +01:00
committed by GitHub
parent c9155d5e72
commit 5a9d6a91ea
33 changed files with 122 additions and 122 deletions

View File

@@ -27,7 +27,7 @@ python-version = "3.9"
class A: ...
class B: ...
# error: "Operator `|` is unsupported between objects of type `<class 'A'>` and `<class 'B'>`"
# error: "Operator `|` is not supported between objects of type `<class 'A'>` and `<class 'B'>`"
reveal_type(A | B) # revealed: Unknown
```