From 1e20083e17b344c300aa00343b380c8adbbe2930 Mon Sep 17 00:00:00 2001 From: Trevor Gross Date: Sat, 10 Jun 2023 12:06:17 -0400 Subject: [PATCH] Apply changes to fix python linting errors --- core/src/unicode/printable.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/unicode/printable.py b/core/src/unicode/printable.py index 7c37f5f09..4d39ace06 100755 --- a/core/src/unicode/printable.py +++ b/core/src/unicode/printable.py @@ -119,7 +119,7 @@ def print_singletons(uppers, lowers, uppersname, lowersname): print("#[rustfmt::skip]") print("const {}: &[u8] = &[".format(lowersname)) for i in range(0, len(lowers), 8): - print(" {}".format(" ".join("{:#04x},".format(l) for l in lowers[i:i+8]))) + print(" {}".format(" ".join("{:#04x},".format(x) for x in lowers[i:i+8]))) print("];") def print_normal(normal, normalname):