From e78463325b58cce6d947a7ea3b67eb21914dcbc4 Mon Sep 17 00:00:00 2001 From: Michel Roux Date: Fri, 23 Feb 2024 11:23:32 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20wrong=20argument=20for=20add=5Fa?= =?UTF-8?q?rgument?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- commands/retro.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/retro.py b/commands/retro.py index a9c9da5..6793e57 100644 --- a/commands/retro.py +++ b/commands/retro.py @@ -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])