mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2026-07-28 01:58:11 -07:00
Format --nobuild
I'm writing python like C now, help
This commit is contained in:
@@ -166,7 +166,11 @@ def pack(
|
||||
|
||||
if (source / "Fonts").is_dir():
|
||||
for font in (source / "Fonts").iterdir():
|
||||
if not font.is_file() or font.name.startswith(".") or font.suffix != ".c":
|
||||
if (
|
||||
not font.is_file()
|
||||
or font.name.startswith(".")
|
||||
or font.suffix != ".c"
|
||||
):
|
||||
continue
|
||||
logger(f"Compile: font for pack '{source.name}': {font.name}")
|
||||
pack_font(font, packed / "Fonts" / font.name)
|
||||
|
||||
Reference in New Issue
Block a user