Network: toString formatting fix

This commit is contained in:
Heiko Schaefer 2023-06-28 20:31:19 +02:00 committed by Paul Schaub
parent 268afef1d3
commit d413506c89
Signed by: vanitasvitae
GPG Key ID: 62BEE9264BF17311
1 changed files with 1 additions and 1 deletions

View File

@ -60,7 +60,7 @@ class Network(
for (issuer in nodes.keys) {
val outEdges = edges[issuer] ?: continue
for (edge in outEdges) {
sb.append(edge)
sb.appendLine(edge)
}
}
return sb.toString()