Skip to content

Commit

Permalink
No lint for linter error
Browse files Browse the repository at this point in the history
  • Loading branch information
Honigeintopf committed Sep 4, 2024
1 parent 69be7dd commit 6191d1f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/ssh/ssh.go
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ func (c *Client) Connect(env *Env) error {
ssh.TTY_OP_OSPEED: 115200, // output speed = 14.4kbaud
}

fileDescriptor := int(os.Stdin.Fd())
fileDescriptor := int(os.Stdin.Fd()) //nolint

if term.IsTerminal(fileDescriptor) {
originalState, err := term.MakeRaw(fileDescriptor)
Expand Down

0 comments on commit 6191d1f

Please sign in to comment.