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 107a19b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/wordnik.py
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ def pronounce(text, event):
raise

out = colors.parse("$(b){}$(b): ").format(text)
out += " • ".join([i['raw'] for i in json])
out += " • ".join([i['raw'] for i in json]) # pylint: disable=invalid-sequence-index

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

0 comments on commit 107a19b

Please sign in to comment.