From 0447870b46ed2eb40150a5c8eebaa34d40441468 Mon Sep 17 00:00:00 2001 From: Harsha Dixit Date: Wed, 2 Sep 2026 10:55:42 +0530 Subject: [PATCH] style: fix lint --- convert/utils.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/convert/utils.go b/convert/utils.go index 5e8f2887d..ce8982404 100644 --- a/convert/utils.go +++ b/convert/utils.go @@ -42,7 +42,7 @@ func isEmpty(v interface{}) bool { rv := reflect.ValueOf(v) - switch rv.Kind() { //nolint:exhaustive + switch rv.Kind() { case reflect.Slice, reflect.Array, reflect.Map: return rv.Len() == 0 }