Skip to content

Commit 1e20083

Browse files
committed
Apply changes to fix python linting errors
1 parent a786491 commit 1e20083

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/src/unicode/printable.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ def print_singletons(uppers, lowers, uppersname, lowersname):
119119
print("#[rustfmt::skip]")
120120
print("const {}: &[u8] = &[".format(lowersname))
121121
for i in range(0, len(lowers), 8):
122-
print(" {}".format(" ".join("{:#04x},".format(l) for l in lowers[i:i+8])))
122+
print(" {}".format(" ".join("{:#04x},".format(x) for x in lowers[i:i+8])))
123123
print("];")
124124

125125
def print_normal(normal, normalname):

0 commit comments

Comments
 (0)