progression

This commit is contained in:
Bel LaPointe
2023-10-24 06:20:57 -06:00
parent 6af8af629b
commit f106442299

View File

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