From b76edd40ef9bbc54264b728a1ef438bb40765586 Mon Sep 17 00:00:00 2001 From: Andrey Nering Date: Wed, 21 May 2025 16:44:20 -0300 Subject: [PATCH] lint: fix unneeded lint comment --- internal/tui/components/chat/editor.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/tui/components/chat/editor.go b/internal/tui/components/chat/editor.go index 7512bfc8ad775eb58accd9890c8a66d19adec3f8..b6c67a426d2cb6a58f3fe50e55c011c1953086fc 100644 --- a/internal/tui/components/chat/editor.go +++ b/internal/tui/components/chat/editor.go @@ -90,7 +90,7 @@ func (m *editorCmp) openEditor() tea.Cmd { return util.ReportError(err) } tmpfile.Close() - c := exec.Command(editor, tmpfile.Name()) //nolint:gosec + c := exec.Command(editor, tmpfile.Name()) c.Stdin = os.Stdin c.Stdout = os.Stdout c.Stderr = os.Stderr