Skip to content

Commit 414964b

Browse files
committed
QA: Apply isort suggestions.
1 parent 67bf7f1 commit 414964b

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

drv8830/__init__.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
1-
from i2cdevice import Device, Register, BitField
1+
from i2cdevice import BitField, Device, Register
22
from i2cdevice.adapter import Adapter, LookupAdapter
33

4-
54
__version__ = '0.0.1'
65

76
I2C_ADDR1 = 0x60 # Default, both select jumpers bridged (not cut)

examples/two-motors.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import time
2-
from drv8830 import DRV8830, I2C_ADDR1, I2C_ADDR2
32

3+
from drv8830 import DRV8830, I2C_ADDR1, I2C_ADDR2
44

55
left = DRV8830(I2C_ADDR1)
66
right = DRV8830(I2C_ADDR2)

0 commit comments

Comments
 (0)