-
Notifications
You must be signed in to change notification settings - Fork 2
Closed
Labels
Description
In load
, file
is opened but never closed:
Lines 11 to 15 in 9ce3937
def load(dictionary): | |
file = open(dictionary, "r") | |
for line in file: | |
words.append(line.rstrip()) | |
return True |