From bab1d25dd41f5634d77c03dda598352ea0b7f0a3 Mon Sep 17 00:00:00 2001 From: Edward Betts Date: Sun, 9 Feb 2025 13:46:56 +0000 Subject: [PATCH] Not flying to France --- agenda/trip.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/agenda/trip.py b/agenda/trip.py index b991e10..bf110b4 100644 --- a/agenda/trip.py +++ b/agenda/trip.py @@ -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 ]