Skip to content

Commit 17e33f4

Browse files
committed
Run pre-commit
1 parent 8c95601 commit 17e33f4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/rplidar_simpletest.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ def process_data(data):
2222
try:
2323
# print(lidar.get_info())
2424
for scan in lidar.iter_scans():
25-
for (_, angle, distance) in scan:
25+
for _, angle, distance in scan:
2626
scan_data[min([359, floor(angle)])] = distance
2727
process_data(scan_data)
2828

0 commit comments

Comments
 (0)