Skip to content

Commit 4e28d4f

Browse files
authored
Merge pull request #85 from kavigupta/main
DC should appear in the states and territories list
2 parents 03f055d + 1ea3353 commit 4e28d4f

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

us/states.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4786,12 +4786,11 @@ def mapping(from_field: str, to_field: str, states: Optional[Iterable[State]] =
47864786
WY,
47874787
]
47884788

4789-
STATES_AND_TERRITORIES: List[State] = STATES + TERRITORIES
4789+
STATES_AND_TERRITORIES: List[State] = STATES + TERRITORIES + [DC]
47904790

47914791
COMMONWEALTHS: List[State] = [KY, MA, PA, VA]
47924792

47934793
if DC_STATEHOOD:
47944794
STATES.append(DC)
4795-
STATES_AND_TERRITORIES.append(DC)
47964795
STATES_CONTIGUOUS.append(DC)
47974796
STATES_CONTINENTAL.append(DC)

0 commit comments

Comments
 (0)