Skip to content

Commit

Permalink
Fix bug in word finder
Browse files Browse the repository at this point in the history
  • Loading branch information
olilag committed Sep 21, 2024
1 parent 8c08427 commit 566df79
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/susi_lib/word_finder_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def _translate(
)
else:
f = open(file, "r", encoding="utf-8")
data = list(f)
data = [l.strip() for l in f]
f.close()

match len(wanted_letters):
Expand Down

0 comments on commit 566df79

Please sign in to comment.