(self, obj)
| 598 | |
| 599 | class _AnyMeta(type): |
| 600 | def __instancecheck__(self, obj): |
| 601 | if self is Any: |
| 602 | raise TypeError("typing.Any cannot be used with isinstance()") |
| 603 | return super().__instancecheck__(obj) |
| 604 | |
| 605 | def __repr__(self): |
| 606 | if self is Any: |
no test coverage detected