progression

main
Bel LaPointe 2023-10-24 06:20:57 -06:00
parent 6af8af629b
commit f106442299
1 changed files with 2 additions and 1 deletions

View File

@ -5,6 +5,7 @@ import (
"fmt"
"io"
"os"
"strings"
)
type File string
@ -140,5 +141,5 @@ func readTransactionDescription(r io.Reader) (string, error) {
}
result = append(result, firstByte[0])
}
return string(result), nil
return strings.TrimSpace(string(result)), nil
}