multi: fix linter by updating to latest version

This commit is contained in:
Oliver Gugger
2025-02-17 09:44:10 +01:00
parent c40ea0cefc
commit fa10991545
8 changed files with 341 additions and 320 deletions

View File

@@ -578,7 +578,7 @@ func newMemChannelGraph() *memChannelGraph {
// error, then execution should be terminated.
//
// NOTE: Part of the autopilot.ChannelGraph interface.
func (m memChannelGraph) ForEachNode(cb func(Node) error) error {
func (m *memChannelGraph) ForEachNode(cb func(Node) error) error {
for _, node := range m.graph {
if err := cb(node); err != nil {
return err