Dont shadow data

This commit is contained in:
Kovid Goyal
2019-11-13 19:47:08 +05:30
parent 0d18b91895
commit c4c6ef799f

View File

@@ -60,7 +60,7 @@ contents:
for m, g in zip(data['match'], data['groupdicts']):
if m:
matches.append(m), groupdicts.append(g)
for word, data in zip(matches, groupdicts):
for word, match_data in zip(matches, groupdicts):
# Lookup the word in a dictionary, the open_url function
# will open the provided url in the system browser
boss.open_url(f'https://www.google.com/search?q=define:{word}')