Skip to content

Commit 69f3b6f

Browse files
committed
fix(batch_process.py): the block_xxxx.tex is not filtered
1 parent d689ce2 commit 69f3b6f

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

batch_process.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,14 +30,16 @@ def filter_tex_files(tex_files: List[str], main_path: str = None) -> List[str]:
3030

3131
# TODO: move this to config
3232
redundant_tex_files = [
33-
"paper_block.tex",
3433
"paper_colored.tex",
3534
"paper_white.tex",
3635
"paper_original.tex",
3736
]
3837

3938
result = []
4039
for tex_file in tex_files:
40+
if "paper_block_" in tex_file:
41+
continue
42+
4143
if os.path.basename(tex_file) in redundant_tex_files:
4244
continue
4345

0 commit comments

Comments
 (0)