From 2e80a38aa9930ba15659221873e7dce03cd25894 Mon Sep 17 00:00:00 2001 From: Tommy Parnell Date: Sat, 23 Jul 2022 17:13:56 -0400 Subject: [PATCH] fix arg closes #4 --- widgets.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/widgets.ts b/widgets.ts index 1f3f2ea..6970404 100644 --- a/widgets.ts +++ b/widgets.ts @@ -12,7 +12,7 @@ widgets.command("list").action(async () => { }) widgets.command("get") -.argument("widget id ", "the id of the widget") +.argument("", "the id of the widget") .option("-f, --format ", "the format of the widget") .action(async (id, options) => { updateSpinnerText("Getting widget " + id);