Skip to content
This repository was archived by the owner on Nov 3, 2023. It is now read-only.

Commit f24168e

Browse files
committed
Don't use 'l' as a variable name
1 parent bd86b9b commit f24168e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/pydocstyle/wordlists.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@ def load_wordlist(name):
2626
2727
"""
2828
text = pkgutil.get_data('pydocstyle', 'data/' + name).decode('utf8')
29-
for l in text.splitlines():
30-
l = COMMENT_RE.sub('', l).strip()
31-
if l:
32-
yield l
29+
for line in text.splitlines():
30+
line = COMMENT_RE.sub('', line).strip()
31+
if line:
32+
yield line
3333

3434

3535
#: A dict mapping stemmed verbs to the imperative form

0 commit comments

Comments
 (0)