Skip to content

Commit

Permalink
reformatting
Browse files Browse the repository at this point in the history
  • Loading branch information
5ila5 committed Jan 6, 2025
1 parent 3dacf07 commit 0deed3d
Showing 1 changed file with 4 additions and 7 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
# There was an ICS source but the ICS file was not stored permanently and would be removed after a few days.
import requests
from bs4 import BeautifulSoup, Tag
from waste_collection_schedule import Collection # type: ignore[attr-defined]
from waste_collection_schedule.service.ICS import ICS

Expand All @@ -13,14 +12,11 @@
"strasse": "Drosselgasse",
},
"Milow Friedhofstr.": {"ort": "Milow", "strasse": "Friedhofstr."},
"Falkensee Ahornstr.": {
"ort": "Falkensee",
"strasse": "Ahornstr."
},
"Falkensee Ahornstr.": {"ort": "Falkensee", "strasse": "Ahornstr."},
"Falkensee complex street name": {
"ort": "Falkensee",
"strasse": "Karl-Marx-Str. (von Friedrich-Hahn-Str. bis Am Schlaggraben)"
}
"strasse": "Karl-Marx-Str. (von Friedrich-Hahn-Str. bis Am Schlaggraben)",
},
}

ICON_MAP = {
Expand All @@ -32,6 +28,7 @@

API_URL = "https://www.abfall-havelland.de/ics.php"


class Source:
def __init__(self, ort: str, strasse: str):
self._ort: str = ort
Expand Down

0 comments on commit 0deed3d

Please sign in to comment.