diff options
| author | Dave Henderson <dhenderson@gmail.com> | 2023-03-19 20:32:12 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-03-19 20:32:12 -0500 |
| commit | fdba91ea77755752e88fda095dda6740a6a1d764 (patch) | |
| tree | ef090e783ace329dac9df1d92ed237469a466e9d /data/datasource_stdin.go | |
| parent | e89af5debb3a5d15a571d501bdd12b1fd8861cea (diff) | |
| parent | e34b2a5d28970f0fd3ae677180a1e33488245a4c (diff) | |
Merge pull request #1684 from hairyhenderson/fix-lint
fix new lint errors
Diffstat (limited to 'data/datasource_stdin.go')
| -rw-r--r-- | data/datasource_stdin.go | 2 |
1 files changed, 1 insertions, 1 deletions
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) |
