Skip to content

Commit 6fed7c0

Browse files
correct pylint error
1 parent 7a6134f commit 6fed7c0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/lis3mdl_calibrator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454

5555
for i in range(SAMPLE_SIZE):
5656
# Capture the samples and show the progress
57-
if not (i % (SAMPLE_SIZE / 20)):
57+
if not i % (SAMPLE_SIZE / 20):
5858
print("*", end="")
5959

6060
mag_x, mag_y, mag_z = magnetometer.magnetic

0 commit comments

Comments
 (0)