Skip to content

Commit ff6d367

Browse files
committed
Fix linter complaint
1 parent 53ff1ec commit ff6d367

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

internal/fwserver/server_listresource.go

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ package fwserver
55

66
import (
77
"context"
8-
"fmt"
98
"iter"
109

1110
"github.com/hashicorp/terraform-plugin-framework/diag"
@@ -88,7 +87,7 @@ func (s *Server) ListResource(ctx context.Context, fwReq *ListRequest, fwStream
8887
return diag.Diagnostics{
8988
diag.NewErrorDiagnostic(
9089
"Invalid ListResource Request",
91-
fmt.Sprintf("Config cannot be nil"),
90+
"Config cannot be nil",
9291
),
9392
}
9493
}

0 commit comments

Comments
 (0)