From 09c559a6c2f7359a98844e5c56365d04a2627d18 Mon Sep 17 00:00:00 2001 From: Alex Masi Date: Thu, 9 May 2024 23:17:22 +0000 Subject: [PATCH] linter --- dataplane/forwarding/info.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dataplane/forwarding/info.go b/dataplane/forwarding/info.go index b2dfc611..c0afb962 100644 --- a/dataplane/forwarding/info.go +++ b/dataplane/forwarding/info.go @@ -111,7 +111,7 @@ func CounterInfo(obj fwdobject.Object) string { } // PortInfo returns the details of the specified Port. -func PortInfo(ctx *fwdcontext.Context, arg interface{}) (*fwdpb.PortElementInfo, error) { +func PortInfo(_ *fwdcontext.Context, arg interface{}) (*fwdpb.PortElementInfo, error) { port, ok := arg.(fwdport.Port) if !ok { return nil, fmt.Errorf("arg %v is not a Port", arg)