Suppress errors in test_web due to ambiguous MRO

This commit is contained in:
Jason R. Coombs 2020-11-29 16:24:20 -05:00
parent 13cd780231
commit b0803a2ac0

View File

@ -189,7 +189,7 @@ class FakeHistory(object):
def list_all_helper_statuses(self):
return []
class FakeDisplayableServer(StubServer):
class FakeDisplayableServer(StubServer): # type: ignore # Cannot determine MRO
def __init__(self, serverid, nickname, connected,
last_connect_time, last_loss_time, last_rx_time):
StubServer.__init__(self, serverid)
@ -255,7 +255,7 @@ class FakeStorageServer(service.MultiService):
def on_status_changed(self, cb):
cb(self)
class FakeClient(_Client):
class FakeClient(_Client): # type: ignore # Cannot determine MRO
def __init__(self):
# don't upcall to Client.__init__, since we only want to initialize a
# minimal subset