mirror of
https://codeberg.org/privacy1st/subprocess-util
synced 2024-12-22 22:06:05 +01:00
6 lines
155 B
Python
6 lines
155 B
Python
from pathlib import Path
|
|
|
|
|
|
def _get_chunk_file(chunk_file_tmpl: Path, ct: int):
|
|
return chunk_file_tmpl.parent.joinpath(f'{chunk_file_tmpl.name}.{ct}')
|