Skip to content

Commit 2ef8518

Browse files
committed
Fixed a compatibility issue with filter() that changed in a recent
python3 build
1 parent c8b631d commit 2ef8518

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bingo.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ def getList(inFile):
3131
sys.exit()
3232
for index, var in enumerate(bingoList):
3333
bingoList[index] = var.replace("\n", "")
34-
bingoList = filter(None, bingoList)
34+
filter(None, bingoList)
3535
random.shuffle(bingoList)
3636
bingoList.insert(12, "FREE SPACE")
3737
return bingoList[:25]

0 commit comments

Comments
 (0)