Skip to content

Commit 57e9e98

Browse files
committed
Rename variable for lint.
1 parent fc75a1a commit 57e9e98

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

adafruit_bitmap_font/bdf.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -94,9 +94,9 @@ def load_glyphs(self, code_points):
9494
remaining.add(code_points)
9595
else:
9696
remaining = set(code_points)
97-
for cp in remaining:
98-
if cp in self._glyphs and self._glyphs[cp]:
99-
remaining.remove(cp)
97+
for code_point in remaining:
98+
if code_point in self._glyphs and self._glyphs[code_point]:
99+
remaining.remove(code_point)
100100
if not remaining:
101101
return
102102

0 commit comments

Comments
 (0)