Skip to content

Commit 7abbd42

Browse files
committed
add linter exception
Signed-off-by: Tim Ramlot <[email protected]>
1 parent 01b8e5b commit 7abbd42

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/source/source.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ eventloop:
202202
// NewChannelBroadcaster creates a new ChannelBroadcaster for the given channel.
203203
// A ChannelBroadcaster is a wrapper around a channel that allows multiple listeners to all
204204
// receive the events from the channel.
205-
func NewChannelBroadcaster[T any](source <-chan event.TypedGenericEvent[T]) *channelBroadcaster[T] {
205+
func NewChannelBroadcaster[T any](source <-chan event.TypedGenericEvent[T]) *channelBroadcaster[T] { //nolint:revive
206206
return &channelBroadcaster[T]{
207207
source: source,
208208
}

0 commit comments

Comments
 (0)