mirror of
https://github.com/aclindsa/ofxgo.git
synced 2024-11-22 03:30:04 -05:00
cmd/ofx: go vet
This commit is contained in:
parent
f51af6dd44
commit
3091a97b2c
@ -53,7 +53,7 @@ func getAccounts() {
|
||||
return
|
||||
}
|
||||
|
||||
fmt.Println("\nFound the following accounts:\n")
|
||||
fmt.Printf("\nFound the following accounts:\n\n")
|
||||
|
||||
if acctinfo, ok := response.Signup[0].(ofxgo.AcctInfoResponse); ok {
|
||||
for _, acct := range acctinfo.AcctInfo {
|
||||
|
@ -95,7 +95,7 @@ func invTransactions() {
|
||||
printInvBuy(stmt.CurDef, &tran.InvBuy)
|
||||
case ofxgo.ClosureOpt:
|
||||
printInvTran(&tran.InvTran)
|
||||
fmt.Println("%s %s contracts (%s shares each)\n", tran.OptAction, tran.Units, tran, tran.ShPerCtrct)
|
||||
fmt.Printf("%s %s contracts (%d shares each)\n", tran.OptAction, tran.Units, tran.ShPerCtrct)
|
||||
case ofxgo.Income:
|
||||
printInvTran(&tran.InvTran)
|
||||
currency := stmt.CurDef
|
||||
@ -170,7 +170,7 @@ func invTransactions() {
|
||||
} else if len(tran.OrigCurrency.CurSym) > 0 {
|
||||
currency = tran.Currency.CurSym
|
||||
}
|
||||
fmt.Printf(" %s/%s %s -> %s shares of %s %s (%s %s for fractional shares)\n", tran.Numerator, tran.Denominator, tran.OldUnits, tran.NewUnits, tran.SecId.UniqueIdType, tran.SecId.UniqueId, tran.FracCash, currency)
|
||||
fmt.Printf(" %d/%d %s -> %s shares of %s %s (%s %s for fractional shares)\n", tran.Numerator, tran.Denominator, tran.OldUnits, tran.NewUnits, tran.SecId.UniqueIdType, tran.SecId.UniqueId, tran.FracCash, currency)
|
||||
// TODO print ticker instead of CUSIP
|
||||
case ofxgo.Transfer:
|
||||
printInvTran(&tran.InvTran)
|
||||
|
@ -58,7 +58,7 @@ func runCmd(c *Command) {
|
||||
|
||||
func main() {
|
||||
if len(os.Args) < 2 {
|
||||
fmt.Println("Error: Please supply a sub-command. Usage:\n")
|
||||
fmt.Printf("Error: Please supply a sub-command. Usage:\n\n")
|
||||
usage()
|
||||
os.Exit(1)
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user