From 2f6d54352852fa653592e218bc73cb3ffa04a168 Mon Sep 17 00:00:00 2001 From: Michel Roux Date: Fri, 23 Feb 2024 11:29:33 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20Fix=20default?= 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 6793e57..6dc5c5e 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()) +parser.add_argument("path", nargs=1, default=[Path.cwd()]) args = parser.parse_args() path = Path(args.path[0])