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 41a28c1 commit 72e7ae2Copy full SHA for 72e7ae2
adafruit_imageload/__init__.py
@@ -47,6 +47,7 @@ def load(
47
palette is the desired palette type. The constructor should take the number of colors and
48
support assignment to indices via [].
49
"""
50
+ # pylint: disable=too-many-branches
51
if not bitmap or not palette:
52
try:
53
# use displayio if available
adafruit_imageload/jpg.py
@@ -12,7 +12,7 @@
12
13
14
15
-#A separate try for jpegio. While it has wide support it is not universal, and this import may fail.
+#A separate try for jpegio. Not every board supports it and this import may fail.
16
#If that happens an ImportError with a proper message needs to be raised
17
18
from jpegio import JpegDecoder
0 commit comments