Skip to content

Commit 87672d4

Browse files
authored
Merge pull request #21 from colonwq/fix_dupkey
Remove duplicate BLANK key in text_dict
2 parents a2288e0 + 2376fd1 commit 87672d4

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

font_maker.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,6 @@
201201
0b10011100,
202202
), # 11
203203
"__FULL__": (0b11111111, 0b11111111, 0b11111111, 0b11111111, 0b11111111),
204-
"BLANK": (0b10000000, 0b10000000, 0b10000000, 0b10000000, 0b10000000),
205204
"""
206205
""": (
207206
0b10000000, # this is the enter / paragraph character
@@ -233,7 +232,7 @@
233232

234233
out[str(i)] = arr
235234
# print(' '+ "'"+str(i)+"'", ':', arr, ',')
236-
except:
235+
except: # pylint: disable=bare-except
237236
pass # print('skipped: '+i)
238237
for i in out:
239238
print("'" + str(i) + "'", ":", out[i], ",")

0 commit comments

Comments
 (0)