You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
filename=f"emoji/U+{ord(char):X}_U+{ord(text[i+1]):X}_U+{ord(text[i+2]):X}_U+{ord(text[i+3]):X}_U+{ord(text[i+4]):X}.png"# noqa: E501, Line too long
169
+
filename=f"emoji/U+{ord(char):X}_U+{ord(new_text[i+1]):X}_U+{ord(new_text[i+2]):X}_U+{ord(new_text[i+3]):X}_U+{ord(new_text[i+4]):X}.png"# noqa: E501, Line too long
155
170
bmp, palette=adafruit_imageload.load(filename)
171
+
156
172
skip_count=4
157
173
break
158
174
except (OSError, IndexError):
159
175
pass
160
176
161
177
# try 4 wide file
162
178
try:
163
-
filename=f"emoji/U+{ord(char):X}_U+{ord(text[i+1]):X}_U+{ord(text[i+2]):X}_U+{ord(text[i+3]):X}.png"# noqa: E501, Line too long
179
+
filename=f"emoji/U+{ord(char):X}_U+{ord(new_text[i+1]):X}_U+{ord(new_text[i+2]):X}_U+{ord(new_text[i+3]):X}.png"# noqa: E501, Line too long
0 commit comments