From a0a8159557657933fec5f63887dec2effa4195f9 Mon Sep 17 00:00:00 2001 From: onyx-and-iris Date: Mon, 16 Feb 2026 00:10:00 +0000 Subject: [PATCH] return nil explicitly if no error --- cmd/vbantxt/main.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/vbantxt/main.go b/cmd/vbantxt/main.go index e4993a9..e22ec19 100644 --- a/cmd/vbantxt/main.go +++ b/cmd/vbantxt/main.go @@ -141,8 +141,8 @@ func run() (func(), error) { "no VBAN commands provided; please provide at least one command as an argument", ) } - sendCommands(client, commands) + return closer, nil } @@ -177,7 +177,7 @@ func createClient(flags *Flags) (*vbantxt.VbanTxt, func(), error) { } } - return client, closer, err + return client, closer, nil } // sendCommands sends the provided VBAN commands using the client and logs any errors that occur.