aboutsummaryrefslogtreecommitdiffstats
path: root/commands/bug/completion.go
diff options
context:
space:
mode:
authorMichael Muré <batolettre@gmail.com>2023-01-22 14:59:03 +0100
committerGitHub <noreply@github.com>2023-01-22 14:59:03 +0100
commit574716518009d341c8abd54285719e448ddbb844 (patch)
tree491df144c41dc1a8a71f0631b1eb808dd525fdc3 /commands/bug/completion.go
parent05be19d3bdfcafbfb4cf39d0dfc0ae480c5e062d (diff)
parent3f764397dbd49910e549d3ef3c0d26e3ca2f8b0f (diff)
downloadgit-bug-574716518009d341c8abd54285719e448ddbb844.tar.gz
Merge pull request #1001 from MichaelMure/style/clean-up-linter-issues
style: clean up linter complaints
Diffstat (limited to 'commands/bug/completion.go')
-rw-r--r--commands/bug/completion.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/commands/bug/completion.go b/commands/bug/completion.go
index 4754f97d..62bf658a 100644
--- a/commands/bug/completion.go
+++ b/commands/bug/completion.go
@@ -50,7 +50,7 @@ func BugAndLabelsCompletion(env *execenv.Env, addOrRemove bool) completion.Valid
_ = env.Backend.Close()
}()
- b, args, err := ResolveSelected(env.Backend, args)
+ b, cleanArgs, err := ResolveSelected(env.Backend, args)
if _select.IsErrNoValidId(err) {
// we need a bug first to complete labels
return bugWithBackend(env.Backend, toComplete)
@@ -62,7 +62,7 @@ func BugAndLabelsCompletion(env *execenv.Env, addOrRemove bool) completion.Valid
snap := b.Snapshot()
seenLabels := map[bug.Label]bool{}
- for _, label := range args {
+ for _, label := range cleanArgs {
seenLabels[bug.Label(label)] = addOrRemove
}