Skip to content

Commit e3bd0ec

Browse files
committed
fix lint issues
1 parent 8107e9d commit e3bd0ec

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

service/policy/attributes/attributes.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -371,7 +371,7 @@ func (s *AttributesService) DeactivateAttributeValue(ctx context.Context, req *c
371371
}
372372

373373
func (s *AttributesService) AssignKeyAccessServerToAttribute(_ context.Context, _ *connect.Request[attributes.AssignKeyAccessServerToAttributeRequest]) (*connect.Response[attributes.AssignKeyAccessServerToAttributeResponse], error) {
374-
return nil, connect.NewError(connect.CodeUnimplemented, errors.New("This compatibility stub will be removed entirely in the following release."))
374+
return nil, connect.NewError(connect.CodeUnimplemented, errors.New("this compatibility stub will be removed entirely in the following release"))
375375
}
376376

377377
func (s *AttributesService) RemoveKeyAccessServerFromAttribute(ctx context.Context, req *connect.Request[attributes.RemoveKeyAccessServerFromAttributeRequest]) (*connect.Response[attributes.RemoveKeyAccessServerFromAttributeResponse], error) {
@@ -399,7 +399,7 @@ func (s *AttributesService) RemoveKeyAccessServerFromAttribute(ctx context.Conte
399399
}
400400

401401
func (s *AttributesService) AssignKeyAccessServerToValue(_ context.Context, _ *connect.Request[attributes.AssignKeyAccessServerToValueRequest]) (*connect.Response[attributes.AssignKeyAccessServerToValueResponse], error) {
402-
return nil, connect.NewError(connect.CodeUnimplemented, errors.New("This compatibility stub will be removed entirely in the following release."))
402+
return nil, connect.NewError(connect.CodeUnimplemented, errors.New("this compatibility stub will be removed entirely in the following release"))
403403
}
404404

405405
func (s *AttributesService) RemoveKeyAccessServerFromValue(ctx context.Context, req *connect.Request[attributes.RemoveKeyAccessServerFromValueRequest]) (*connect.Response[attributes.RemoveKeyAccessServerFromValueResponse], error) {

service/policy/namespaces/namespaces.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ func (ns NamespacesService) DeactivateNamespace(ctx context.Context, req *connec
223223
}
224224

225225
func (ns NamespacesService) AssignKeyAccessServerToNamespace(_ context.Context, _ *connect.Request[namespaces.AssignKeyAccessServerToNamespaceRequest]) (*connect.Response[namespaces.AssignKeyAccessServerToNamespaceResponse], error) {
226-
return nil, connect.NewError(connect.CodeUnimplemented, errors.New("This compatibility stub will be removed entirely in the following release."))
226+
return nil, connect.NewError(connect.CodeUnimplemented, errors.New("this compatibility stub will be removed entirely in the following release"))
227227
}
228228

229229
func (ns NamespacesService) RemoveKeyAccessServerFromNamespace(ctx context.Context, req *connect.Request[namespaces.RemoveKeyAccessServerFromNamespaceRequest]) (*connect.Response[namespaces.RemoveKeyAccessServerFromNamespaceResponse], error) {

0 commit comments

Comments
 (0)