Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 5 additions & 10 deletions codespell_lib/_codespell.py
Original file line number Diff line number Diff line change
Expand Up @@ -637,19 +637,14 @@ def build_dict(
if key in ignore_words:
continue
data = data.strip()
fix = data.rfind(",")

if fix < 0:
fix = True
reason = ""
elif fix == (len(data) - 1):
data = data[:fix]
reason = ""
if "," in data:
fix = False
data, reason = data.rsplit(",", 1)
reason = reason.lstrip()
else:
reason = data[fix + 1 :].strip()
data = data[:fix]
fix = False
fix = True
reason = ""

misspellings[key] = Misspelling(data, fix, reason)

Expand Down