Skip to content

Commit b7dcdd3

Browse files
committed
Fix lint
1 parent b3a1e8e commit b7dcdd3

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

linode/firewall/helpers.go

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

33
import (
4+
"context"
45
"fmt"
56

67
"github.com/hashicorp/terraform-plugin-framework/diag"
78
"github.com/hashicorp/terraform-plugin-log/tflog"
89
"github.com/linode/linodego"
9-
"golang.org/x/net/context"
1010
)
1111

1212
// firewallDeviceAssignment is a helper struct intended to be used in conjunction

linode/helper/filter.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ package helper
22

33
import (
44
"context"
5+
"crypto/sha3"
56
"encoding/base64"
67
"encoding/json"
78
"fmt"
@@ -18,7 +19,6 @@ import (
1819
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
1920
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/validation"
2021
"github.com/linode/linodego"
21-
"golang.org/x/crypto/sha3"
2222
)
2323

2424
// validFilterValueTypes is a list of valid underlying types for filterable fields.

linode/helper/frameworkfilter/filter.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ package frameworkfilter
22

33
import (
44
"context"
5+
"crypto/sha3"
56
"encoding/base64"
67
"encoding/json"
78
"strconv"
@@ -13,7 +14,6 @@ import (
1314
"github.com/hashicorp/terraform-plugin-framework/types"
1415
"github.com/hashicorp/terraform-plugin-log/tflog"
1516
"github.com/linode/linodego"
16-
"golang.org/x/crypto/sha3"
1717
)
1818

1919
// ListFunc is a wrapper for functions that will list and return values from the API.

linode/instance/helpers.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ package instance
22

33
import (
44
"context"
5+
"crypto/sha3"
56
"encoding/base64"
67
"fmt"
78
"net"
@@ -17,7 +18,6 @@ import (
1718
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
1819
"github.com/linode/linodego"
1920
"github.com/linode/terraform-provider-linode/v3/linode/helper"
20-
"golang.org/x/crypto/sha3"
2121
)
2222

2323
type diskSpec map[string]any

0 commit comments

Comments
 (0)