Skip to content

Commit

Permalink
Adjusting per feedback.
Browse files Browse the repository at this point in the history
  • Loading branch information
EAGrahamJr committed Jul 14, 2024
1 parent a2d18bd commit c019258
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion adafruit_displayio_sh1106.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,12 @@
# Support both 8.x.x and 9.x.x. Change when 8.x.x is discontinued as a stable release.
try:
from typing import Union
from busdisplay import BusDisplay
except ImportError:
pass

try:
from fourwire import FourWire
from busdisplay import BusDisplay
from i2cdisplaybus import I2CDisplayBus
except ImportError:
from displayio import FourWire
Expand Down

0 comments on commit c019258

Please sign in to comment.