Skip to content

Commit 267752e

Browse files
committed
Remove excess whitespace in yandex_translate
1 parent 78f65c4 commit 267752e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

plugins/yandex_translate.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ def list_langs():
5454
data = r.json()
5555
langs = data['langs']
5656
out = "Language Codes:"
57-
out += ",".join("\n{}-{}".format(key, value) for (key, value) in sorted(langs.items(), ))
57+
out += ",".join("\n{}-{}".format(key, value) for (key, value) in sorted(langs.items(),))
5858
out += "\n\nTranslation directions:"
5959
out += ",".join("\n{}".format(code) for code in data['dirs'])
6060
paste = web.paste(out, ext="txt")

0 commit comments

Comments
 (0)