Skip to content

Commit 8894e3c

Browse files
committed
pylint issue with example 3
1 parent edbee5e commit 8894e3c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/example3_i2c_scanner.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ def test_i2c_write(addr):
5959

6060
# scan through all possible i2c addresses doi
6161
for address in range(0x03, 0x80):
62-
if(test_i2c_write(address)):
62+
if test_i2c_write(address):
6363
found.append(address)
6464

6565
if found:

0 commit comments

Comments
 (0)