Skip to content

Commit

Permalink
Merge pull request #97 from aclindsa/inv401k_employername_nagstring
Browse files Browse the repository at this point in the history
Use NagString for INV401K.employername
  • Loading branch information
csingley committed Nov 12, 2020
2 parents d495ef2 + 9cf7cd7 commit 3166bb9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion ofxtools/models/invest/stmt.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@

from ofxtools.Types import (
Bool,
NagString,
String,
Integer,
OneOf,
Expand Down Expand Up @@ -256,7 +257,7 @@ class INV401KSUMMARY(Aggregate):
class INV401K(Aggregate):
""" OFX section 13.9.3 """

employername = String(32, required=True)
employername = NagString(32, required=True)
planid = String(32)
planjoindate = DateTime()
employercontactinfo = String(255)
Expand Down

0 comments on commit 3166bb9

Please sign in to comment.