From e73aee05956d7917e7d76ab793d5e2291ace6416 Mon Sep 17 00:00:00 2001 From: Stefan Majewsky Date: Fri, 17 Apr 2026 13:44:02 +0200 Subject: fix lints --- oblast.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/oblast.go b/oblast.go index 42305e6..9a68606 100644 --- a/oblast.go +++ b/oblast.go @@ -187,5 +187,5 @@ func (e MissingRecordError[R]) Error() string { for idx, columnName := range e.plan.PrimaryKeyColumnNames { keyDescs[idx] = fmt.Sprintf("%s = %#v", columnName, v.FieldByIndex(e.plan.IndexByColumnName[columnName])) } - return fmt.Sprintf("could not UPDATE record that does not exist in the database: %s", strings.Join(keyDescs, ", ")) + return "could not UPDATE record that does not exist in the database: " + strings.Join(keyDescs, ", ") } -- cgit v1.2.3