Not flying to France

This commit is contained in:
Edward Betts 2025-02-09 13:46:56 +00:00
parent b2cef3933d
commit bab1d25dd4

View file

@ -389,7 +389,7 @@ def get_trip_routes(trip: Trip, data_dir: str) -> list[StrDict]:
for item in trip.conferences
if "latitude" in item
and "longitude" in item
and item["country"] not in ("gb", "be") # not flying to Belgium
and item["country"] not in {"gb", "be", "fr"} # not flying to Belgium or France
]