Skip to content

Commit bde64bc

Browse files
committed
lint fix
1 parent 05a5b9c commit bde64bc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

internal/provider/tenants/model.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ func tfModelFromTenantRead(m models.TenantRead) tenantModel {
3434
r.LastActionAt = types.StringValue(m.LastActionAt.String())
3535

3636
// Convert attributes map to JSON string
37-
if m.Attributes != nil && len(m.Attributes) > 0 {
37+
if len(m.Attributes) > 0 {
3838
attributesJSON, err := json.Marshal(m.Attributes)
3939
if err == nil {
4040
r.Attributes = types.StringValue(string(attributesJSON))

0 commit comments

Comments
 (0)