From f30bc04db77b62532bf5e135f84242186178b730 Mon Sep 17 00:00:00 2001 From: Jacob Henry Date: Tue, 20 Nov 2018 13:07:16 -0500 Subject: [PATCH] Fixed numbers being strings (big oops) --- house_management.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/house_management.py b/house_management.py index 975e6e2..2fec1e9 100644 --- a/house_management.py +++ b/house_management.py @@ -164,7 +164,7 @@ async def import_assignments() -> List[Optional[JobAssignment]]: if signer == SIGNOFF_PLACEHOLDER: signer = None else: - signer = scroll_util.find_by_name(signer) + signer = await scroll_util.find_by_name(signer) except scroll_util.BrotherNotFound: # If we can't figure out the name signer = None