Skip to content

Commit

Permalink
Reverted incorrect change
Browse files Browse the repository at this point in the history
This dict should contain these items with the same key and value, unlike what I previously thought
  • Loading branch information
tomaarsen committed Sep 3, 2020
1 parent 5f31968 commit 77b9c25
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion word_forms/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,9 @@ def __repr__(self):
for verb in verb_obj.verbs:
CONJUGATED_VERB_DICT[verb] = verb_obj

ADJECTIVE_TO_ADVERB = {"good": "well"}
ADJECTIVE_TO_ADVERB = {"good" : "well", "fast" : "fast", "hard" : "hard",
"late" : "late", "early" : "early", "daily" : "daily",
"straight" : "straight"}
for ss in wn.all_synsets(pos="r"):
for lemma in ss.lemmas():
word = lemma.name()
Expand Down

0 comments on commit 77b9c25

Please sign in to comment.