Skip to content

Commit

Permalink
Mark B1 field meet_address_1 as optional, per the spec. (#7)
Browse files Browse the repository at this point in the history
In sdifv3f.txt, line 786, this field is not marked as mandatory.
  • Loading branch information
ericvsmith committed Jan 6, 2024
1 parent 5cbb889 commit c9f7e91
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sdif/models.py
Expand Up @@ -219,7 +219,7 @@ class Meet:
identifier: ClassVar[str] = "B1"
organization: Optional[OrganizationCode] = spec(3, 1)
meet_name: str = spec(12, 30)
meet_address_1: str = spec(42, 22)
meet_address_1: Optional[str] = spec(42, 22)
meet_address_2: Optional[str] = spec(64, 22)
meet_city: Optional[str] = spec(86, 20, m2=True)
meet_state: Optional[str] = spec(106, 2, type=t.usps, m2=True)
Expand Down

0 comments on commit c9f7e91

Please sign in to comment.