Files
2025-08-21 11:05:23 +00:00

4 lines
140 B
Python

class MyType(type):
def __instancecheck__(self, instance, /):
<selection>return super().__instancecheck__(instance)</selection>