Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 95c891f

Browse files
committed
Run go fmt
1 parent f5a2269 commit 95c891f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

expect/pty/pty_windows.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ import (
77
"io"
88
"os"
99

10-
"golang.org/x/sys/windows"
10+
"golang.org/x/sys/windows"
1111

12-
"github.com/coder/coder/expect/conpty"
12+
"github.com/coder/coder/expect/conpty"
1313
)
1414

1515
func newPty() (Pty, error) {
@@ -18,7 +18,7 @@ func newPty() (Pty, error) {
1818
if vsn.MajorVersion < 10 ||
1919
vsn.BuildNumber < 17763 {
2020
return pipePty()
21-
}
21+
}
2222

2323
return conpty.New(80, 80)
2424
}
@@ -43,7 +43,7 @@ func pipePty() (Pty, error) {
4343
}
4444

4545
type pipePtyVal struct {
46-
inputR, inputW *os.File
46+
inputR, inputW *os.File
4747
outputR, outputW *os.File
4848
}
4949

0 commit comments

Comments
 (0)