Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add message for cafetaria Aula #502

Merged
merged 1 commit into from
Oct 20, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions server/scraper/resto/menu_manual.py
Original file line number Diff line number Diff line change
Expand Up @@ -667,6 +667,10 @@ def coupure_2024_nl(_path, original):
"open": True
}

def cafetaria_aula(_path, original):
add_or_append(original, "Cafetaria Aula zal vanaf 21/10 alvast voor twee weken gesloten zijn door overmacht. update via ugent.be/studentenrestaurants.")
return original


def create_changes(root_path):
return [
Expand Down Expand Up @@ -1359,6 +1363,13 @@ def create_changes(root_path):
end=date(2025, 7, 1),
all_days=True
),
ManualChange(
replacer=cafetaria_aula,
resto=["nl-debrug", "nl"],
start=date(2024, 10, 21),
end=date(2024, 11, 3),
all_days=True
),
]


Expand Down