(self, obj)
| 575 | |
| 576 | class _AnyMeta(type): |
| 577 | def __instancecheck__(self, obj): |
| 578 | if self is Any: |
| 579 | raise TypeError("typing.Any cannot be used with isinstance()") |
| 580 | return super().__instancecheck__(obj) |
| 581 | |
| 582 | def __repr__(self): |
| 583 | if self is Any: |
no test coverage detected