From 125fa6c6c8767190b42998da9be9a51d03048a01 Mon Sep 17 00:00:00 2001 From: Yash Mehrotra Date: Mon, 4 Nov 2024 21:52:45 +0530 Subject: [PATCH] chore: fix lint --- upstream/jobs.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/upstream/jobs.go b/upstream/jobs.go index deed55d2..6ff3b01c 100644 --- a/upstream/jobs.go +++ b/upstream/jobs.go @@ -49,8 +49,7 @@ var ( ) type ForeignKeyErrorSummary struct { - count int - ids []string + ids []string } func (fks ForeignKeyErrorSummary) Count() int { return len(fks.ids) }