🐛 wrong argument for add_argument
dl / lint (push) Successful in 1m11s Details
dl / docker (push) Successful in 2m37s Details

This commit is contained in:
Michel Roux 2024-02-23 11:23:32 +01:00
parent 7c6adfc0f4
commit e78463325b
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(), required=True)
parser.add_argument("path", nargs=1, default=Path.cwd())
args = parser.parse_args()
path = Path(args.path[0])