We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5b55b7e commit 98fa4f7Copy full SHA for 98fa4f7
adafruit_amg88xx.py
@@ -32,10 +32,15 @@
32
33
try:
34
from typing import List
35
+
36
# These are only needed for typing
37
import busio # pylint: disable=unused-import
- from adafruit_register.i2c_bits import RWBits # pylint: disable=unused-import,line-too-long
38
- from adafruit_register.i2c_bit import RWBit # pylint: disable=unused-import,line-too-long
+ 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
44
except ImportError:
45
pass
46
0 commit comments