🐛 Fix default
dl / lint (push) Successful in 1m7s Details
dl / docker (push) Successful in 38s Details

This commit is contained in:
Michel Roux 2024-02-23 11:29:33 +01:00
parent e78463325b
commit 2f6d543528
1 changed files with 1 additions and 1 deletions

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])