Skip to content

Commit e14c5cb

Browse files
committed
Fixed pylint import order
1 parent a8434cb commit e14c5cb

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

examples/pca9685_servo.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@
33
from board import SCL, SDA
44
import busio
55

6-
# Import the PCA9685 module.
7-
from adafruit_pca9685 import PCA9685
8-
96
# This example also relies on the Adafruit motor library available here:
107
# https://github.com/adafruit/Adafruit_CircuitPython_Motor
118
from adafruit_motor import servo
129

10+
# Import the PCA9685 module.
11+
from adafruit_pca9685 import PCA9685
12+
1313
i2c = busio.I2C(SCL, SDA)
1414

1515
# Create a simple PCA9685 class instance.

0 commit comments

Comments
 (0)