Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Static-check fixes from @lespea #1657, batch 8/n #1710

Merged
merged 1 commit into from
Oct 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion pkg/output/record_writer_csv.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ import (

type RecordWriterCSV struct {
writerOptions *cli.TWriterOptions
ofs0 byte // Go's CSV library only lets its 'Comma' be a single character
csvWriter *csv.Writer
needToPrintHeader bool
firstRecordKeys []string
Expand Down
1 change: 0 additions & 1 deletion pkg/output/record_writer_markdown.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ import (

type RecordWriterMarkdown struct {
writerOptions *cli.TWriterOptions
ors string

numHeaderLinesOutput int
lastJoinedHeader string
Expand Down
1 change: 0 additions & 1 deletion pkg/transformers/fill_down.go
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,6 @@ func transformerFillDownParseCLI(
type TransformerFillDown struct {
// input
fillDownFieldNames []string
doAll bool
onlyIfAbsent bool

// state
Expand Down
1 change: 0 additions & 1 deletion pkg/transformers/step.go
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,6 @@ type TransformerStep struct {
// STATE

// Scratch space used per-record
valueFieldValues []mlrval.Mlrval
// Map from group-by field names to value-field names to stepper name to stepper object. See
// the Transform method below for more details.
groups map[string]map[string]map[string]tStepper
Expand Down
Loading