Skip to content

Commit

Permalink
Remove print
Browse files Browse the repository at this point in the history
  • Loading branch information
nicholasjackson committed Sep 24, 2024
1 parent b81eb53 commit 22fea48
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
2 changes: 0 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ require (
github.com/hashicorp/go-getter v1.7.5
github.com/hashicorp/hcl/v2 v2.21.0
github.com/infinytum/raymond/v2 v2.0.5
github.com/kr/pretty v0.2.1
github.com/mitchellh/go-wordwrap v1.0.1
github.com/silas/dag v0.0.0-20220518035006-a7e85ada93c5
github.com/stretchr/testify v1.9.0
Expand Down Expand Up @@ -44,7 +43,6 @@ require (
github.com/hashicorp/go-version v1.7.0 // indirect
github.com/jmespath/go-jmespath v0.4.0 // indirect
github.com/klauspost/compress v1.17.9 // indirect
github.com/kr/text v0.1.0 // indirect
github.com/mitchellh/go-homedir v1.1.0 // indirect
github.com/mitchellh/go-testing-interface v1.14.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
Expand Down
5 changes: 2 additions & 3 deletions parser.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ import (
"github.com/jumppad-labs/hclconfig/registry"
"github.com/jumppad-labs/hclconfig/resources"
"github.com/jumppad-labs/hclconfig/types"
"github.com/kr/pretty"
"github.com/zclconf/go-cty/cty"
"github.com/zclconf/go-cty/cty/function"
)
Expand Down Expand Up @@ -1534,8 +1533,8 @@ func processExpr(expr hclsyntax.Expression) ([]string, error) {
resources = append(resources, ref...)
}

default:
pretty.Println(expr)
//default:
// pretty.Println(expr)
}

return resources, nil
Expand Down

0 comments on commit 22fea48

Please sign in to comment.