Issue #61: add directory creation.

This commit is contained in:
Sergey Vartanov 2021-07-07 23:53:56 +03:00
parent 5ab1986e62
commit 120b6969ad

View file

@ -43,6 +43,8 @@ def main(argv) -> None:
input_file_names: List[Path]
os.makedirs("map", exist_ok=True)
if options.input_file_name:
input_file_names = list(map(Path, options.input_file_name))
else: