Skip to content

Commit a7675a2

Browse files
author
Liam Cervante
committed
fix imports
1 parent b61e19a commit a7675a2

File tree

7 files changed

+8
-11
lines changed

7 files changed

+8
-11
lines changed

internal/command/jsonformat/differ/list.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
package differ
22

33
import (
4-
"github.com/hashicorp/terraform/internal/command/jsonformat/structured"
5-
"github.com/hashicorp/terraform/internal/command/jsonformat/structured/attribute_path"
64
"github.com/zclconf/go-cty/cty"
75

86
"github.com/hashicorp/terraform/internal/command/jsonformat/collections"
97
"github.com/hashicorp/terraform/internal/command/jsonformat/computed"
108
"github.com/hashicorp/terraform/internal/command/jsonformat/computed/renderers"
9+
"github.com/hashicorp/terraform/internal/command/jsonformat/structured"
10+
"github.com/hashicorp/terraform/internal/command/jsonformat/structured/attribute_path"
1111
"github.com/hashicorp/terraform/internal/command/jsonprovider"
1212
"github.com/hashicorp/terraform/internal/plans"
1313
)

internal/command/jsonformat/differ/map.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
package differ
22

33
import (
4-
"github.com/hashicorp/terraform/internal/command/jsonformat/structured"
54
"github.com/zclconf/go-cty/cty"
65

76
"github.com/hashicorp/terraform/internal/command/jsonformat/collections"
87
"github.com/hashicorp/terraform/internal/command/jsonformat/computed"
98
"github.com/hashicorp/terraform/internal/command/jsonformat/computed/renderers"
9+
"github.com/hashicorp/terraform/internal/command/jsonformat/structured"
1010
"github.com/hashicorp/terraform/internal/command/jsonprovider"
1111
"github.com/hashicorp/terraform/internal/plans"
1212
)

internal/command/jsonformat/differ/object.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
package differ
22

33
import (
4-
"github.com/hashicorp/terraform/internal/command/jsonformat/structured"
54
"github.com/zclconf/go-cty/cty"
65

76
"github.com/hashicorp/terraform/internal/command/jsonformat/collections"
87
"github.com/hashicorp/terraform/internal/command/jsonformat/computed"
98
"github.com/hashicorp/terraform/internal/command/jsonformat/computed/renderers"
9+
"github.com/hashicorp/terraform/internal/command/jsonformat/structured"
1010
"github.com/hashicorp/terraform/internal/command/jsonprovider"
1111
"github.com/hashicorp/terraform/internal/plans"
1212
)

internal/command/jsonformat/differ/primitive.go

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
11
package differ
22

33
import (
4-
"github.com/hashicorp/terraform/internal/command/jsonformat/structured"
54
"github.com/zclconf/go-cty/cty"
65

76
"github.com/hashicorp/terraform/internal/command/jsonformat/computed"
8-
97
"github.com/hashicorp/terraform/internal/command/jsonformat/computed/renderers"
8+
"github.com/hashicorp/terraform/internal/command/jsonformat/structured"
109
)
1110

1211
func computeAttributeDiffAsPrimitive(change structured.Change, ctype cty.Type) computed.Diff {

internal/command/jsonformat/differ/sensitive.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
package differ
22

33
import (
4-
"github.com/hashicorp/terraform/internal/command/jsonformat/structured"
54
"github.com/zclconf/go-cty/cty"
65

76
"github.com/hashicorp/terraform/internal/command/jsonformat/computed"
87
"github.com/hashicorp/terraform/internal/command/jsonformat/computed/renderers"
8+
"github.com/hashicorp/terraform/internal/command/jsonformat/structured"
99
"github.com/hashicorp/terraform/internal/command/jsonprovider"
1010
"github.com/hashicorp/terraform/internal/plans"
1111
)

internal/command/jsonformat/differ/tuple.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
package differ
22

33
import (
4-
"github.com/hashicorp/terraform/internal/command/jsonformat/structured"
54
"github.com/zclconf/go-cty/cty"
65

76
"github.com/hashicorp/terraform/internal/command/jsonformat/collections"
87
"github.com/hashicorp/terraform/internal/command/jsonformat/computed"
98
"github.com/hashicorp/terraform/internal/command/jsonformat/computed/renderers"
9+
"github.com/hashicorp/terraform/internal/command/jsonformat/structured"
1010
)
1111

1212
func computeAttributeDiffAsTuple(change structured.Change, elementTypes []cty.Type) computed.Diff {

internal/command/jsonformat/differ/unknown.go

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,11 @@
11
package differ
22

33
import (
4-
"github.com/hashicorp/terraform/internal/command/jsonformat/structured"
54
"github.com/zclconf/go-cty/cty"
65

76
"github.com/hashicorp/terraform/internal/command/jsonformat/computed"
8-
97
"github.com/hashicorp/terraform/internal/command/jsonformat/computed/renderers"
10-
8+
"github.com/hashicorp/terraform/internal/command/jsonformat/structured"
119
"github.com/hashicorp/terraform/internal/command/jsonprovider"
1210
)
1311

0 commit comments

Comments
 (0)