File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change 28
28
29
29
from adafruit_bus_device .i2c_device import I2CDevice
30
30
from adafruit_register import i2c_bit , i2c_bits
31
+ from adafruit_register .i2c_bits import (
32
+ RWBits ,
33
+ ) # pylint: disable=unused-import,line-too-long
34
+ from adafruit_register .i2c_bit import (
35
+ RWBit ,
36
+ ) # pylint: disable=unused-import,line-too-long
31
37
from micropython import const
32
38
33
39
try :
34
40
from typing import List
35
41
36
42
# These are only needed for typing
37
43
import busio # pylint: disable=unused-import
38
- from adafruit_register .i2c_bits import (
39
- RWBits ,
40
- ) # pylint: disable=unused-import,line-too-long
41
- from adafruit_register .i2c_bit import (
42
- RWBit ,
43
- ) # pylint: disable=unused-import,line-too-long
44
44
except ImportError :
45
45
pass
46
46
You can’t perform that action at this time.
0 commit comments