Skip to content

Commit 1e5d221

Browse files
committed
style: lint fixes
1 parent 76c0224 commit 1e5d221

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

internal/provider/api_token_resource.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -110,9 +110,9 @@ func (r *ApiTokenResource) Create(ctx context.Context, req resource.CreateReques
110110

111111
// For the purposes of this example code, hardcoding a response value to
112112
// save into the Terraform state.
113-
data.Name = types.StringValue(string(res.Name.Value))
113+
data.Name = types.StringValue(res.Name.Value)
114114
data.Id = types.StringValue(string(res.ID.Value))
115-
data.Token = types.StringValue(string(res.Token.Value))
115+
data.Token = types.StringValue(res.Token.Value)
116116

117117
// Write logs using the tflog package
118118
// Documentation: https://terraform.io/plugin/log

0 commit comments

Comments
 (0)