(cls, instance)
| 42 | """A Parser metaclass that will be used for parser class creation. |
| 43 | """ |
| 44 | def __instancecheck__(cls, instance): |
| 45 | return cls.__subclasscheck__(type(instance)) |
| 46 | |
| 47 | def __subclasscheck__(cls, subclass): |
| 48 | return (hasattr(subclass, 'load_data_source') and |
nothing calls this directly
no test coverage detected