Skip to content

Commit eacdd2d

Browse files
committed
fix(dns): format record import summary string to satisfy golines lint.
1 parent 57c5b34 commit eacdd2d

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

internal/namespaces/domain/v2beta1/custom_record_import.go

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,11 @@ func (r dnsRecordImportResult) String() string {
4141
case r.RecordCount == 0:
4242
return "no records imported"
4343
default:
44-
return fmt.Sprintf("imported %d record(s) in %d API request(s)", r.RecordCount, r.APIRequests)
44+
return fmt.Sprintf(
45+
"imported %d record(s) in %d API request(s)",
46+
r.RecordCount,
47+
r.APIRequests,
48+
)
4549
}
4650
}
4751

0 commit comments

Comments
 (0)