From ca1676c05603c0af9ff41ccd1387d098baeb6d37 Mon Sep 17 00:00:00 2001 From: Sam Lown Date: Tue, 4 Jul 2023 14:17:43 +0000 Subject: [PATCH] lint fixes --- cmd/gobl/build.go | 5 ----- internal/build_test.go | 3 --- 2 files changed, 8 deletions(-) diff --git a/cmd/gobl/build.go b/cmd/gobl/build.go index 6727123..5e04a2d 100644 --- a/cmd/gobl/build.go +++ b/cmd/gobl/build.go @@ -10,11 +10,6 @@ import ( "github.com/invopop/gobl.cli/internal" ) -var ( - boolTrue = true - boolFalse = false -) - type buildOpts struct { *rootOpts set map[string]string diff --git a/internal/build_test.go b/internal/build_test.go index 3891802..88fd548 100644 --- a/internal/build_test.go +++ b/internal/build_test.go @@ -21,9 +21,6 @@ var ( privateKey = new(dsig.PrivateKey) publicKey = new(dsig.PublicKey) verifyKeyText string - - boolTrue = true - boolFalse = false ) const signingKeyFile = "testdata/private.jwk"