Skip to content

Commit

Permalink
removed unnecessary function call
Browse files Browse the repository at this point in the history
  • Loading branch information
Johannes Koch committed Apr 14, 2022
1 parent 4e961ad commit 871ffa5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/seetie/convert.go
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ func listToValue(l []interface{}) cty.Value {
func GoToValue(v interface{}) cty.Value {
switch v := v.(type) {
case string:
return cty.StringVal(ToString(v))
return cty.StringVal(v)
case bool:
return cty.BoolVal(v)
case int64:
Expand Down

0 comments on commit 871ffa5

Please sign in to comment.