Skip to content

Commit

Permalink
remove-invalid-chars-at-karlsruhe (#71)
Browse files Browse the repository at this point in the history
  • Loading branch information
the-infinity authored Feb 12, 2024
1 parent 2e3f86d commit 45b4513
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion original/karlsruhe.py
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ def _get_lot_details(self, url) -> dict:
if key == "capacity":
details[key] = int_or_none(tr.td.find_next_sibling("td").text)
elif key == "address":
details[key] = "\n".join(tr.td.find_next_sibling("td").strings)
details[key] = "\n".join(tr.td.find_next_sibling("td").strings).replace('\xa0', ' ')

return details

0 comments on commit 45b4513

Please sign in to comment.