Skip to content

Commit d2c9459

Browse files
committed
Fix golangci-lint 'staticcheck'.
1 parent 6c33c55 commit d2c9459

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

internal/service/cloudfront/sweep.go

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ import (
1818
"github.com/hashicorp/terraform-provider-aws/internal/sweep"
1919
"github.com/hashicorp/terraform-provider-aws/internal/sweep/awsv2"
2020
"github.com/hashicorp/terraform-provider-aws/internal/sweep/framework"
21-
sweepfw "github.com/hashicorp/terraform-provider-aws/internal/sweep/framework"
2221
"github.com/hashicorp/terraform-provider-aws/names"
2322
)
2423

@@ -788,8 +787,8 @@ func sweepTrustStores(ctx context.Context, client *conns.AWSClient) ([]sweep.Swe
788787
}
789788

790789
for _, v := range page.TrustStoreList {
791-
sweepResources = append(sweepResources, sweepfw.NewSweepResource(newTrustStoreResource, client,
792-
sweepfw.NewAttribute(names.AttrID, aws.ToString(v.Id)),
790+
sweepResources = append(sweepResources, framework.NewSweepResource(newTrustStoreResource, client,
791+
framework.NewAttribute(names.AttrID, aws.ToString(v.Id)),
793792
))
794793
}
795794
}

0 commit comments

Comments
 (0)