Added a mechanism by which we can more reliable check real vs dummy Brother items

This commit is contained in:
Jacob Henry 2018-11-20 17:05:56 -05:00
parent 9d5cac2941
commit 9b696ddbc4
1 changed files with 4 additions and 1 deletions

View File

@ -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')