# Note: list most important devices first.
self.devices_by_person: Dict[Person, List[str]] = {
Person.SCOTT: [
- "3C:28:6D:10:6D:41", # pixel3
+ "DC:E5:5B:0F:03:3D", # pixel6
"6C:40:08:AE:DC:2E", # laptop
],
Person.LYNN: [
for person in Person:
print(f'{person} => {p.where_is_person_now(person)}')
print()
- for location in Location:
- print(f'{location} => {p.is_anyone_in_location_now(location)}')
+# for location in Location:
+# print(f'{location} => {p.is_anyone_in_location_now(location)}')
if __name__ == '__main__':