Fix lint error

This commit is contained in:
Volodymyr Zotov
2025-08-28 13:24:55 -05:00
parent 7e08158d2f
commit 6baef1b9cf

View File

@@ -19,7 +19,7 @@ type Namespace struct {
// LabelNamespace applies the given labels to the specified namespace
func (n *Namespace) LabelNamespace(ctx context.Context, labelsMap map[string]string) {
if labelsMap == nil || len(labelsMap) == 0 {
if len(labelsMap) == 0 {
return
}