Skip to content

Commit 334a5d9

Browse files
authored
Fix typing imports
1 parent 7a217f6 commit 334a5d9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

adafruit_pcf8591/analog_in.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929

3030
try:
3131
import typing # pylint: disable=unused-import
32-
from adafruit_pcf8591.pcf8591.PCF8591 import PCF8591
32+
from adafruit_pcf8591.pcf8591 import PCF8591
3333
except ImportError:
3434
pass
3535

adafruit_pcf8591/analog_out.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
"""
2929
try:
3030
import typing # pylint: disable=unused-import
31-
from adafruit_pcf8591.pcf8591.PCF8591 import PCF8591
31+
from adafruit_pcf8591.pcf8591 import PCF8591
3232
except ImportError:
3333
pass
3434

0 commit comments

Comments
 (0)