Skip to content

Commit

Permalink
fix: a linter warning about ineffectual assignment
Browse files Browse the repository at this point in the history
Signed-off-by: Christian Ege <[email protected]>
  • Loading branch information
graugans committed Apr 13, 2024
1 parent 4f784b5 commit 0ab7a05
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cmd/ovp8xx/cmd/waitforonline.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
Copyright © 2023 Christian Ege <[email protected]>
Copyright © 2024 Christian Ege <[email protected]>
*/
package cmd

Expand All @@ -12,7 +12,7 @@ import (
)

func waitForOnlineCommand(cmd *cobra.Command, args []string) error {
var ok = false
var ok bool
var err error
helper, err := NewHelper(cmd)
if err != nil {
Expand Down

0 comments on commit 0ab7a05

Please sign in to comment.