updated stencil generation

This commit is contained in:
Nicolas Kruse 2025-10-23 17:23:47 +02:00
parent f61591a6ca
commit 519909696b
2 changed files with 2 additions and 1 deletions

View File

@ -38,7 +38,7 @@ dev = [
] ]
[tool.mypy] [tool.mypy]
files = ["src", "tools"] files = ["src", "tools", "stencils"]
strict = true strict = true
warn_return_any = true warn_return_any = true
warn_unused_configs = true warn_unused_configs = true

View File

@ -13,6 +13,7 @@ stack_size = 64
includes = ['aux_functions.c'] includes = ['aux_functions.c']
def read_files(files: list[str]) -> str: def read_files(files: list[str]) -> str:
ret = '' ret = ''
script_dir = Path(__file__).parent script_dir = Path(__file__).parent