Skip to content

Commit b4bc028

Browse files
committed
relocating linter exception line
1 parent d8588f8 commit b4bc028

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

sdk/rpc/server/server.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,8 @@ func (t *RPCServer) CredentialImport(req proto.ImportCredentialRequest, resp *sd
134134
importer, ok := t.importers[req.CredentialID]
135135
if !ok || importer == nil {
136136
return &errFunctionFieldNotSet{
137-
objName: req.CredentialID.String(), //lint:ignore QF1008 explicit reads more clearly here
137+
//lint:ignore QF1008 explicit reads more clearly here
138+
objName: req.CredentialID.String(),
138139
funcName: "Importer",
139140
}
140141
}

0 commit comments

Comments
 (0)