From b2d1132f5987d6a150ccbf4152048cf0bf1ca625 Mon Sep 17 00:00:00 2001 From: David Bartley Date: Sat, 24 Jan 2026 01:48:26 -0800 Subject: [PATCH] Remove extraneous space in `BuyPower` `omitempty`. --- invstmt.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/invstmt.go b/invstmt.go index 3e4e134..6cd883c 100644 --- a/invstmt.go +++ b/invstmt.go @@ -1038,7 +1038,7 @@ type InvBalance struct { AvailCash Amount `xml:"AVAILCASH"` // Available cash across all sub-accounts, including sweep funds MarginBalance Amount `xml:"MARGINBALANCE"` // Negative means customer has borrowed funds ShortBalance Amount `xml:"SHORTBALANCE"` // Always positive, market value of all short positions - BuyPower Amount `xml:"BUYPOWER, omitempty"` + BuyPower Amount `xml:"BUYPOWER,omitempty"` BalList []Balance `xml:"BALLIST>BAL,omitempty"` }