🐛 wrong argument for add_argument
All checks were successful
dl / lint (push) Successful in 1m11s
dl / docker (push) Successful in 2m37s

This commit is contained in:
Michel Roux 2024-02-23 11:23:32 +01:00
parent 7c6adfc0f4
commit e78463325b

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(), required=True)
parser.add_argument("path", nargs=1, default=Path.cwd())
args = parser.parse_args()
path = Path(args.path[0])