From d1558a3472fa5c021f41d1b4f5f5a4732d8b833e Mon Sep 17 00:00:00 2001 From: Quentin McGaw Date: Fri, 9 Apr 2021 17:44:22 +0000 Subject: [PATCH] Fix lint error from PR merge --- internal/firewall/firewall.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/internal/firewall/firewall.go b/internal/firewall/firewall.go index 9d09d5ea..b098db60 100644 --- a/internal/firewall/firewall.go +++ b/internal/firewall/firewall.go @@ -24,7 +24,8 @@ type Configurator interface { RemoveAllowedPort(ctx context.Context, port uint16) (err error) SetDebug() // SetNetworkInformation is meant to be called only once - SetNetworkInformation(defaultInterface string, defaultGateway net.IP, localNetworks []routing.LocalNetwork, localIP net.IP) + SetNetworkInformation(defaultInterface string, defaultGateway net.IP, + localNetworks []routing.LocalNetwork, localIP net.IP) } type configurator struct { //nolint:maligned