Skip to content

Commit 79a2736

Browse files
committed
avoid crash from dependency
1 parent b317001 commit 79a2736

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/cli/analyze.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ func ExplainPolicies(explainedPolicies *matcher.Policy) {
161161
}
162162

163163
func Lint(kubePolicies []*networkingv1.NetworkPolicy) {
164-
warnings := linter.Lint(kubePolicies, set.NewSet[linter.Check](nil))
164+
warnings := linter.Lint(kubePolicies, set.FromSlice[linter.Check](nil))
165165
fmt.Println(linter.WarningsTable(warnings))
166166
}
167167

0 commit comments

Comments
 (0)