1
0
Fork 0

잘못들어간 import 조정

This commit is contained in:
Sangbum Kim 2017-09-11 00:58:19 +09:00
parent 0f53bcbe20
commit b278e41b2e
1 changed files with 1 additions and 2 deletions

View File

@ -8,7 +8,6 @@ import (
"amuz.es/src/infra/cpu_ctrl/processor"
"amuz.es/src/infra/cpu_ctrl/logger"
"bytes"
"golang.org/x/tools/go/gcimporter15/testdata"
)
var (
@ -66,7 +65,7 @@ func (c *fanControl) StartControl() {
if (!compareFanSpeed(fanSpeedList, newFanSpeedList)) {
fanSpeedList = newFanSpeedList
args := make([]string, 0)
args = append(args,"raw","0x3a", "0x01",)
args = append(args, "raw", "0x3a", "0x01", )
for _, item := range fanSpeedList {
args = append(args, fmt.Sprintf("0x%x", item))
}