Skip to content

Commit

Permalink
Normalize postcode before use
Browse files Browse the repository at this point in the history
  • Loading branch information
frenck committed May 16, 2022
1 parent 8cf6d56 commit cc8e2d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/twentemilieu/twentemilieu.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ async def unique_id(self) -> int:
"FetchAdress",
data={
"companyCode": self.company_code,
"postCode": self.post_code,
"postCode": self.post_code.replace(" ", "").upper(),
"houseNumber": str(self.house_number),
"houseLetter": str(self.house_letter or ""),
},
Expand Down

0 comments on commit cc8e2d1

Please sign in to comment.