améliorations

This commit is contained in:
sky
2025-09-11 15:27:30 +02:00
parent 6fa530e297
commit ee46094d6d
5 changed files with 120 additions and 71 deletions

View File

@@ -23,7 +23,7 @@ def main():
parser = get_argument_parser()
args = parser.parse_args()
# parse and verify output file if sepcified
# parse and verify output file if specified
if args.path_to_output_file:
path_to_output_file = Path(args.path_to_output_file)
if "~" in str(path_to_output_file):
@@ -36,7 +36,7 @@ def main():
else:
path_to_output_file = None
# parse and verify output dir if sepcified
# parse and verify output dir if specified
if args.path_to_output_dir:
path_to_output_dir = Path(args.path_to_output_dir)
if "~" in str(path_to_output_dir):