Skip to content

Commit ac57c00

Browse files
committed
fix: wrap long line to satisfy 80 char limit
Signed-off-by: Olexandr88 <radole1203@gmail.com>
1 parent 06f997b commit ac57c00

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

cmd/loop/instantout.go

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,11 @@ func instantOut(ctx context.Context, cmd *cli.Command) error {
9191
idx++
9292
shortID := res.ReservationId
9393
if len(shortID) != reservation.IdLength {
94-
return fmt.Errorf("invalid reservation id length: got %d, expected %d", len(shortID), reservation.IdLength)
94+
return fmt.Errorf(
95+
"invalid reservation id length: got %d, expected %d",
96+
len(shortID),
97+
reservation.IdLength,
98+
)
9599
}
96100
shortID = shortID[:3]
97101

0 commit comments

Comments
 (0)