diff --git a/agenda/trip.py b/agenda/trip.py index bae4bb1..6234bf6 100644 --- a/agenda/trip.py +++ b/agenda/trip.py @@ -204,7 +204,9 @@ def get_trip_routes(trip: Trip) -> list[StrDict]: "to": latlon_tuple(item), } for item in trip.conferences - if "latitude" in item and "longitude" in item and item["country"] != "gb" + if "latitude" in item + and "longitude" in item + and item["country"] not in ("gb", "be") # not flying to Belgium ]