A type created with `NewType` cannot be used in an `isinstance` call. Mypy flags this as an error, but pyright does not. ```python from typing import NewType MyInt = NewType("MyInt", int) v = 1 isinstance(v, MyInt) ```