Skip to content

Commit

Permalink
dictionary fixes (#254)
Browse files Browse the repository at this point in the history
  • Loading branch information
JediFaust authored Sep 14, 2023
1 parent 434f189 commit 6c0fb8f
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions tools/grammar_checker.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ def grammar_check(content):
if os.path.isfile(dictionary):
with open(dictionary) as file:
entities = file.readlines()
entities = [i[:-1] for i in entities]

matches = []

Expand Down

0 comments on commit 6c0fb8f

Please sign in to comment.