🐛 Fix default
All checks were successful
dl / lint (push) Successful in 1m7s
dl / docker (push) Successful in 38s

This commit is contained in:
Michel Roux 2024-02-23 11:29:33 +01:00
parent e78463325b
commit 2f6d543528

View File

@ -7,7 +7,7 @@ from subprocess import run
from requests import get
parser = ArgumentParser()
parser.add_argument("path", nargs=1, default=Path.cwd())
parser.add_argument("path", nargs=1, default=[Path.cwd()])
args = parser.parse_args()
path = Path(args.path[0])