Fix gofmt in slurm.go refs #14110
[arvados.git] / services / crunch-dispatch-slurm / slurm.go
index 782be7d8c4e7226ced947bcd26c983ecb6b31de3..791f294df17fabebea6608eb9181552ef76d93aa 100644 (file)
@@ -20,13 +20,13 @@ type Slurm interface {
        Renice(name string, nice int64) error
 }
 
-type slurmCLI struct{
+type slurmCLI struct {
        runSemaphore chan bool
 }
 
 func NewSlurmCLI() *slurmCLI {
        return &slurmCLI{
-              runSemaphore: make(chan bool, 3),
+               runSemaphore: make(chan bool, 3),
        }
 }