Skip to content

Commit ac76827

Browse files
committed
Fix lint
1 parent 53f055d commit ac76827

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

cmd/vcr-compressor/main.go

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,13 +80,17 @@ func main() {
8080
continue
8181
} else {
8282
log.Printf("Interaction %d is in a transient state: %s, Recording it\n", i, status)
83+
8384
transitioning = true
85+
8486
outputCassette.AddInteraction(interaction)
8587
}
8688
} else {
8789
if transitioning {
8890
log.Printf("Interaction %d is not in a transient state anymore: %s, Recording it\n", i, status)
91+
8992
outputCassette.AddInteraction(interaction)
93+
9094
transitioning = false
9195
} else {
9296
log.Printf("Interaction %d is not in a transient state: %s, Recording it\n", i, status)

0 commit comments

Comments
 (0)