Skip to content

Commit f0e716e

Browse files
author
jposada202020
committed
fixing_line
1 parent 079a28e commit f0e716e

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

examples/l3gd20_displayio_simpletest.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,6 @@
3838
while True:
3939
# update the text of the label(s) to show the sensor readings
4040
x, y, z = sensor.gyro
41-
display_output_label.text = (
42-
f"Angular Vel (rad/s):\nx:{x:.2f}\ny:{y:.2f}\nz:{z:.2f}"
43-
)
41+
display_output_label.text = f"Angular Vel (rad/s):\nx:{x:.2f}\ny:{y:.2f}\nz:{z:.2f}"
4442
# wait for a bit
4543
time.sleep(0.5)

0 commit comments

Comments
 (0)