Skip to content

Commit 869c38d

Browse files
committed
note the release version of readinto argument issue
1 parent e74fe84 commit 869c38d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

adafruit_imageload/bmp/indexed.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -99,9 +99,9 @@ def load(
9999
)
100100
except TypeError:
101101
# catch unexpected argument, try python read code.
102-
# this can be removed after a release is made that
103-
# includes bitmapttools.readinto() with all arguments
104-
# used above.
102+
# This issue affects only CircuitPython 6.2.0-beta.4.
103+
# The try/except block here should be removed when
104+
# a newer release is made.
105105
chunk = bytearray(line_size)
106106
for y in range(range1, range2, range3):
107107
file.readinto(chunk)

0 commit comments

Comments
 (0)