Skip to content

Commit

Permalink
chore: fix linting issues #321
Browse files Browse the repository at this point in the history
  • Loading branch information
srinandan committed Oct 20, 2023
1 parent eeae278 commit 2655690
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
3 changes: 2 additions & 1 deletion cmd/apps/createkey.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,10 @@ package apps

import (
"fmt"
"internal/apiclient"
"strconv"

"internal/apiclient"

"internal/client/apps"

"github.com/spf13/cobra"
Expand Down
3 changes: 2 additions & 1 deletion cmd/apps/updatekey.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,10 @@ package apps

import (
"fmt"
"internal/apiclient"
"strconv"

"internal/apiclient"

"internal/client/apps"

"github.com/spf13/cobra"
Expand Down
2 changes: 1 addition & 1 deletion internal/client/kvm/entries.go
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ func ExportAllEntries() (err error) {
}

for _, proxy := range p.Proxies {
//search for only programmable proxies. standard proxies can't have KVMs
// search for only programmable proxies. standard proxies can't have KVMs
if proxy.APIProxyType == "PROGRAMMABLE" {
programmableProxies = append(programmableProxies, proxy.Name)
}
Expand Down

0 comments on commit 2655690

Please sign in to comment.