From c4c6ef799f1a1295b38592a50789af7b0b4f1340 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Wed, 13 Nov 2019 19:47:08 +0530 Subject: [PATCH] Dont shadow data --- docs/kittens/hints.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/kittens/hints.rst b/docs/kittens/hints.rst index db884da59..7347d9c31 100644 --- a/docs/kittens/hints.rst +++ b/docs/kittens/hints.rst @@ -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}')