diff --git a/scroll_util.py b/scroll_util.py index 1fbaadc..87d146e 100644 --- a/scroll_util.py +++ b/scroll_util.py @@ -13,7 +13,7 @@ from slackclient import SlackClient import slack_util # Use this if we can't figure out who a brother actually is -MISSINGBRO_SCROLL = 0 +MISSINGBRO_SCROLL = -1 @dataclass @@ -24,6 +24,9 @@ class Brother(object): name: str scroll: int + def is_valid(self): + return self.scroll is not MISSINGBRO_SCROLL + # load the family tree familyfile = open("sortedfamilytree.txt", 'r')