Skip to content

Commit

Permalink
"Reformatted per new black version"
Browse files Browse the repository at this point in the history
  • Loading branch information
tekktrik committed Mar 29, 2022
1 parent 63edb92 commit 85381fb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion examples/vl53l0x_multiple_sensors.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@


def detect_range(count=5):
""" take count=5 samples """
"""take count=5 samples"""
while count:
for index, sensor in enumerate(vl53):
print("Sensor {} Range: {}mm".format(index + 1, sensor.range))
Expand Down
2 changes: 1 addition & 1 deletion examples/vl53l0x_multiple_sensors_continuous.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@


def detect_range(count=5):
""" take count=5 samples """
"""take count=5 samples"""
while count:
for index, sensor in enumerate(vl53):
print("Sensor {} Range: {}mm".format(index + 1, sensor.range))
Expand Down

0 comments on commit 85381fb

Please sign in to comment.