Fixed numbers being strings (big oops)
This commit is contained in:
parent
f10786e187
commit
f30bc04db7
|
|
@ -164,7 +164,7 @@ async def import_assignments() -> List[Optional[JobAssignment]]:
|
||||||
if signer == SIGNOFF_PLACEHOLDER:
|
if signer == SIGNOFF_PLACEHOLDER:
|
||||||
signer = None
|
signer = None
|
||||||
else:
|
else:
|
||||||
signer = scroll_util.find_by_name(signer)
|
signer = await scroll_util.find_by_name(signer)
|
||||||
except scroll_util.BrotherNotFound:
|
except scroll_util.BrotherNotFound:
|
||||||
# If we can't figure out the name
|
# If we can't figure out the name
|
||||||
signer = None
|
signer = None
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue