File size: 163 Bytes
f3739d5 | 1 2 3 4 5 6 7 | def isinstance_str(x: object, cls_name: str):
for _cls in x.__class__.__mro__:
if _cls.__name__ == cls_name:
return True
return False
|
f3739d5 | 1 2 3 4 5 6 7 | def isinstance_str(x: object, cls_name: str):
for _cls in x.__class__.__mro__:
if _cls.__name__ == cls_name:
return True
return False
|