Improve exit signal sequence

This commit is contained in:
Matthias
2022-05-22 11:01:18 +02:00
parent ce3bfd59f5
commit 3692fcd3d5
3 changed files with 23 additions and 10 deletions

View File

@@ -18,3 +18,6 @@ class ExitCheckTuple:
def __eq__(self, other):
return self.exit_type == other.exit_type and self.exit_reason == other.exit_reason
def __repr__(self):
return f"ExitCheckTuple({self.exit_type}, {self.exit_reason})"