From 7ae3e7da62761a7ef346cd402f2d39c3fdff86ae Mon Sep 17 00:00:00 2001 From: Martin Milata Date: Mon, 13 Mar 2023 19:35:38 +0100 Subject: [PATCH] fixup! fix(core/ui): style update: fonts --- core/tools/codegen/gen_font.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/tools/codegen/gen_font.py b/core/tools/codegen/gen_font.py index 6f14f7f38a..be401a58ee 100755 --- a/core/tools/codegen/gen_font.py +++ b/core/tools/codegen/gen_font.py @@ -52,7 +52,7 @@ def process_bitmap_buffer(buf, bpp): return res -def drop_left_columns(buf: list[int], width: int, drop: int): +def drop_left_columns(buf, width, drop): res = [] for i in range(len(buf)): if i % width >= drop: