Skip to content

Commit

Permalink
i'm drowning
Browse files Browse the repository at this point in the history
  • Loading branch information
DJDevon3 committed Apr 2, 2024
1 parent 1cbd7c4 commit 393aeb8
Showing 1 changed file with 14 additions and 4 deletions.
18 changes: 14 additions & 4 deletions adafruit_is31fl3731/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,12 +54,22 @@

from adafruit_bus_device.i2c_device import I2CDevice

import busio
from circuitpython_typing import ReadableBuffer, WriteableBuffer

try:
from typing import TYPE_CHECKING, List, Tuple, Optional, Iterable
import typing
import busio
from typing import (
TYPE_CHECKING,
List,
Tuple,
Optional,
Iterable,
ReadableBuffer,
WriteableBuffer,
)
from PIL import Image

if TYPE_CHECKING:
from circuitpython_typing import ReadableBuffer, WriteableBuffer
except ImportError as e:
pass

Expand Down

0 comments on commit 393aeb8

Please sign in to comment.