mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-22 23:53:48 +07:00
4 lines
147 B
Python
4 lines
147 B
Python
class MyType(type):
|
|
def __instancecheck__(cls, instance):
|
|
<selection>return super(MyType, cls).__instancecheck__(instance)</selection>
|