From c57f7fb813df8da24f2193586c10bcb5171eb05e Mon Sep 17 00:00:00 2001 From: Harshit Khandelwal Date: Mon, 16 Mar 2026 12:54:31 +0000 Subject: [PATCH] fix: change notebook command to accept 1 arg instead of 2 --- pkg/cmd/notebook/notebook.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/cmd/notebook/notebook.go b/pkg/cmd/notebook/notebook.go index 46d221da3..535b2059d 100644 --- a/pkg/cmd/notebook/notebook.go +++ b/pkg/cmd/notebook/notebook.go @@ -31,7 +31,7 @@ func NewCmdNotebook(store NotebookStore, t *terminal.Terminal) *cobra.Command { Short: "Open a notebook on your Brev machine", Long: notebookLong, Example: notebookExample, - Args: cobra.ExactArgs(2), + Args: cobra.ExactArgs(1), RunE: func(cmd *cobra.Command, args []string) error { // Channel to get the result of the network call resultCh := make(chan *WorkspaceResult)