Skip to content
This repository has been archived by the owner on Oct 23, 2019. It is now read-only.

Commit

Permalink
Disable false-positive invalid-sequence-index
Browse files Browse the repository at this point in the history
  • Loading branch information
linuxdaemon committed Jun 29, 2019
1 parent 4f34691 commit 86bfc05
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion plugins/wordnik.py
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,8 @@ def pronounce(text, event):
raise

out = colors.parse("$(b){}$(b): ").format(text)
out += " • ".join([i['raw'] for i in json])
items = [i['raw'] for i in json]
out += " • ".join(items)

try:
json = word_lookup(text, "audio", limit=1)
Expand Down

0 comments on commit 86bfc05

Please sign in to comment.