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 57a345e commit 6b47e7eCopy full SHA for 6b47e7e
adafruit_hx8357.py
@@ -29,7 +29,7 @@
29
"""
30
31
# imports
32
-# Support both 8.x.x and 9.x.x. Removed 8.x method when discontinued.
+# Support both 8.x.x and 9.x.x. Remove 8.x method when discontinued.
33
try:
34
from fourwire import FourWire # 9.x method
35
from busdisplay import BusDisplay
@@ -66,5 +66,5 @@
66
class HX8357(BusDisplay):
67
"""HX8357D driver"""
68
69
- def __init__(self, bus: FourWire.FourWire, **kwargs) -> None:
+ def __init__(self, bus: FourWire, **kwargs) -> None:
70
super().__init__(bus, _INIT_SEQUENCE, **kwargs)
0 commit comments