From e34b2a5d28970f0fd3ae677180a1e33488245a4c Mon Sep 17 00:00:00 2001 From: Dave Henderson Date: Sun, 19 Mar 2023 21:31:54 -0400 Subject: fix new lint errors Signed-off-by: Dave Henderson --- data/datasource_stdin.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'data/datasource_stdin.go') diff --git a/data/datasource_stdin.go b/data/datasource_stdin.go index 98fbefb3..13bb5fa4 100644 --- a/data/datasource_stdin.go +++ b/data/datasource_stdin.go @@ -7,7 +7,7 @@ import ( "os" ) -func readStdin(ctx context.Context, source *Source, args ...string) ([]byte, error) { +func readStdin(ctx context.Context, _ *Source, _ ...string) ([]byte, error) { stdin := stdinFromContext(ctx) b, err := io.ReadAll(stdin) -- cgit v1.2.3