Remove FakeTypingMeta.__subclasscheck__

This commit is contained in:
Florian Bruhin 2016-11-11 07:40:21 +01:00
parent 4b4bf7ec9e
commit 2dd857d580

View File

@ -38,10 +38,6 @@ class FakeTypingMeta(type):
**_kwds): **_kwds):
pass pass
def __subclasscheck__(self, cls):
"""We implement this for qutebrowser.commands.command to work."""
return isinstance(cls, FakeTypingMeta)
class FakeUnionMeta(FakeTypingMeta): class FakeUnionMeta(FakeTypingMeta):