Replace assert statements by normal if/raise

This commit is contained in:
miruka
2019-04-22 10:08:42 -04:00
parent 98969b75c7
commit d47bf34522
2 changed files with 6 additions and 3 deletions

View File

@@ -124,7 +124,8 @@ class SignalManager(QObject):
inviter: Inviter = None,
left_event: LeftEvent = None) -> None:
assert not (inviter and left_event)
if (inviter and left_event):
raise ValueError()
model = self.backend.models.rooms[client.userId]
no_update = []