From a3656cd31f0dd601510c1c6247b89d528a89598b Mon Sep 17 00:00:00 2001 From: Julio Lopez <1953782+julio-lopez@users.noreply.github.com> Date: Wed, 20 Dec 2023 10:17:30 -0800 Subject: [PATCH] nit: remove empty init() function (#2566) --- pkg/kanctl/helper.go | 4 ---- 1 file changed, 4 deletions(-) diff --git a/pkg/kanctl/helper.go b/pkg/kanctl/helper.go index eae999a364..4bfe7073be 100644 --- a/pkg/kanctl/helper.go +++ b/pkg/kanctl/helper.go @@ -20,10 +20,6 @@ import ( const characters = "abcdefghijklmnopqrstuvwxyz0123456789" -func init() { - -} - func randString(length int) string { bytes := make([]byte, length) for i := 0; i < length; i++ {