Skip to content

Commit

Permalink
fix: Spelling of suppress in table suppression
Browse files Browse the repository at this point in the history
  • Loading branch information
codingconcepts committed Feb 6, 2024
1 parent a0a2445 commit 607d837
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion internal/pkg/generator/common.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ func AddTable(table model.Table, column string, line []string, files map[string]
if _, ok := files[table.Name]; !ok {
files[table.Name] = model.CSVFile{
Name: table.Name,
Output: !table.Supress,
Output: !table.Suppress,
UniqueColumns: table.UniqueColumns,
}
}
Expand Down
2 changes: 1 addition & 1 deletion internal/pkg/model/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ type Config struct {
type Table struct {
Name string `yaml:"name"`
Count int `yaml:"count"`
Supress bool `yaml:"supress"`
Suppress bool `yaml:"suppress"`
UniqueColumns []string `yaml:"unique_columns"`
Columns []Column `yaml:"columns"`
}
Expand Down

0 comments on commit 607d837

Please sign in to comment.