Skip to content

Commit b85c015

Browse files
committed
Fix bug in tally script
1 parent 7eef627 commit b85c015

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

utils/tally_votes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ def delete_from_list(org, ooe_list):
2828
ooe_list.remove(entry)
2929

3030
def check_empty(val):
31-
return val == None or val == "" or val == 0
31+
return val == None or val == "" or int(val) == 0
3232

3333
def main():
3434
attendance_file=sys.argv[1]; # File with UUIDs for each attendee

0 commit comments

Comments
 (0)