We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7eef627 commit b85c015Copy full SHA for b85c015
utils/tally_votes.py
@@ -28,7 +28,7 @@ def delete_from_list(org, ooe_list):
28
ooe_list.remove(entry)
29
30
def check_empty(val):
31
- return val == None or val == "" or val == 0
+ return val == None or val == "" or int(val) == 0
32
33
def main():
34
attendance_file=sys.argv[1]; # File with UUIDs for each attendee
0 commit comments