Skip to content

Commit

Permalink
fix #46 NL postalcode
Browse files Browse the repository at this point in the history
  • Loading branch information
myTselection committed Jul 14, 2024
1 parent 5678218 commit 39fc088
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion custom_components/carbu_com/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -408,7 +408,7 @@ def getFuelPricesNL(self, postalcode, country, town, locationinfo, fueltype: Fue
'url': f"https://www.brandstof-zoeker.nl/station/{block.get('station').get('url')}",
'brand':block.get('station').get('chain'),
'address': block.get('station').get('adres'),
'postalcode': f"{block.get('station').get('pc_cijfer')}{block.get('station').get('pc_letter')}",
'postalcode': f"{block.get('station').get('postcode')}",
'locality': block.get('station').get('plaats'),
'price': block.get('fuelPrice').get('prijs'),
'price_changed': block.get('fuelPrice').get('datum'),
Expand Down

0 comments on commit 39fc088

Please # to comment.