Skip to content

Commit 4b3ee04

Browse files
committed
fix multiple assignment
1 parent 9f15e81 commit 4b3ee04

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

table.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ func (t *Table) CustomBodySchema() (schema *hcl.BodySchema) {
141141
schema = &hcl.BodySchema{
142142
Attributes: []hcl.AttributeSchema{},
143143
}
144-
for colName, _ := range t.Columns {
144+
for colName := range t.Columns {
145145
schema.Attributes = append(schema.Attributes, hcl.AttributeSchema{
146146
Name: colName,
147147
Required: false,

0 commit comments

Comments
 (0)