Skip to content

Commit 6b47e7e

Browse files
committed
requested bus typing change
1 parent 57a345e commit 6b47e7e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

adafruit_hx8357.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
"""
3030

3131
# imports
32-
# Support both 8.x.x and 9.x.x. Removed 8.x method when discontinued.
32+
# Support both 8.x.x and 9.x.x. Remove 8.x method when discontinued.
3333
try:
3434
from fourwire import FourWire # 9.x method
3535
from busdisplay import BusDisplay
@@ -66,5 +66,5 @@
6666
class HX8357(BusDisplay):
6767
"""HX8357D driver"""
6868

69-
def __init__(self, bus: FourWire.FourWire, **kwargs) -> None:
69+
def __init__(self, bus: FourWire, **kwargs) -> None:
7070
super().__init__(bus, _INIT_SEQUENCE, **kwargs)

0 commit comments

Comments
 (0)