Skip to content

Commit

Permalink
Fixing verbs bug
Browse files Browse the repository at this point in the history
Future tense "Will"/"Won't" were the wrong way round
  • Loading branch information
sourzo committed Sep 17, 2024
1 parent 43a1f93 commit 9afbaee
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Binary file modified documentation.odt
Binary file not shown.
4 changes: 2 additions & 2 deletions is_utility.py
Original file line number Diff line number Diff line change
Expand Up @@ -533,9 +533,9 @@ def en_verb(vocab_sample, item, pronoun, tense, negative, question):
return csvr.filter_matches(en, "en_subj", pronoun)[0]["be_past"] + neg + pronoun + " " + vocab_sample[item]["en_vn"]
else:
if negative == True:
start = "Will "
else:
start = "Won't "
else:
start = "Will "
if tense == "future":
return start + pronoun + " " + vocab_sample[item]["english"]
elif tense == "vn_future":
Expand Down

0 comments on commit 9afbaee

Please sign in to comment.