Skip to content

Commit

Permalink
fix: import order
Browse files Browse the repository at this point in the history
  • Loading branch information
boutreet committed Jan 24, 2024
1 parent 14fbd3d commit 87d7bf1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion examples/linesensor_example.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Reads the line sensor"""
from leaphymicropython.sensors.linesensor import read_line_sensor
from time import sleep
from leaphymicropython.sensors.linesensor import read_line_sensor

while True:
print(read_line_sensor(1))
Expand Down
2 changes: 1 addition & 1 deletion examples/rbgled_example.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Lets the rgb-led blink"""
from leaphymicropython.actuators.rgbled import RGBLed
from time import sleep
from leaphymicropython.actuators.rgbled import RGBLed

led = RGBLed(1, 2, 4)
while True:
Expand Down
2 changes: 1 addition & 1 deletion examples/sonar_example.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Reads the distance"""
from leaphymicropython.sensors.sonar import read_distance
from time import sleep
from leaphymicropython.sensors.sonar import read_distance

while True:
print(read_distance(1))
Expand Down

0 comments on commit 87d7bf1

Please sign in to comment.