From 1696524949cda2e53ff78c90ea0ba88df4b8de0b Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sat, 15 Mar 2025 23:20:05 +0530 Subject: [PATCH] Include json test data in bypy freeze --- bypy/init_env.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bypy/init_env.py b/bypy/init_env.py index 732029ff8..790eda123 100644 --- a/bypy/init_env.py +++ b/bypy/init_env.py @@ -89,7 +89,7 @@ def build_frozen_tools(kitty_exe): def sanitize_source_folder(path: str) -> None: for q in walk(path): - if os.path.splitext(q)[1] not in ('.py', '.glsl', '.ttf', '.otf'): + if os.path.splitext(q)[1] not in ('.py', '.glsl', '.ttf', '.otf', '.json'): os.unlink(q)