Skip to content

Commit

Permalink
add linter exception
Browse files Browse the repository at this point in the history
Signed-off-by: Tim Ramlot <42113979+inteon@users.noreply.github.com>
  • Loading branch information
inteon committed Apr 23, 2024
1 parent 01b8e5b commit 7abbd42
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/source/source.go
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ eventloop:
// NewChannelBroadcaster creates a new ChannelBroadcaster for the given channel.
// A ChannelBroadcaster is a wrapper around a channel that allows multiple listeners to all
// receive the events from the channel.
func NewChannelBroadcaster[T any](source <-chan event.TypedGenericEvent[T]) *channelBroadcaster[T] {
func NewChannelBroadcaster[T any](source <-chan event.TypedGenericEvent[T]) *channelBroadcaster[T] { //nolint:revive
return &channelBroadcaster[T]{
source: source,
}
Expand Down

0 comments on commit 7abbd42

Please sign in to comment.