add StateTotalRecord for Iowa
This commit is contained in:
parent
5afdcd6a50
commit
7c32cb0dd3
2 changed files with 18 additions and 1 deletions
|
@ -207,6 +207,10 @@ class BlankField(TextField):
|
|||
def parse(self, s):
|
||||
pass
|
||||
|
||||
class ZeroField(BlankField):
|
||||
def get_data(self):
|
||||
return '0' * self.max_length
|
||||
|
||||
class CRLFField(TextField):
|
||||
def __init__(self, name=None, required=False):
|
||||
super(TextField, self).__init__(name=name, max_length=2, required=required, uppercase=False)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue