Skip to content

Commit 2e6781e

Browse files
committed
remove unused variable i and use _ instead
1 parent c0abb19 commit 2e6781e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

adafruit_pybadger/pybadge.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ def __init__(self):
6666
if i2c is not None:
6767
_i2c_devices = []
6868

69-
for i in range(10):
69+
for _ in range(10):
7070
# try lock 10 times to avoid infinite loop in sphinx build
7171
if i2c.try_lock():
7272
_i2c_devices = i2c.scan()

0 commit comments

Comments
 (0)