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

Verify type assumptions when retrieving child default values #594

Merged
merged 2 commits into from
Mar 8, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Prev Previous commit
fix imports
  • Loading branch information
liamcervante committed Mar 3, 2023
commit dc667ab548b78ea1ead1860eede84cf124e4a72e
5 changes: 3 additions & 2 deletions ext/typeexpr/defaults.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,11 @@
package typeexpr

import (
"github.com/zclconf/go-cty/cty"
"github.com/zclconf/go-cty/cty/convert"
"sort"
"strconv"

"github.com/zclconf/go-cty/cty"
"github.com/zclconf/go-cty/cty/convert"
)

// Defaults represents a type tree which may contain default values for
Expand Down