From 9bc0f979768090550f513deb9d946876504043ef Mon Sep 17 00:00:00 2001 From: Edward Betts <edward@4angle.com> Date: Mon, 17 Mar 2025 07:22:56 +0000 Subject: [PATCH] Show flights without CO2 info. --- validate_yaml.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/validate_yaml.py b/validate_yaml.py index 09ce218..cfb5009 100755 --- a/validate_yaml.py +++ b/validate_yaml.py @@ -59,6 +59,9 @@ def check_flights(airlines: set[str]) -> None: co2_flight_count += len( [flight for flight in booking["flights"] if "co2_kg" in flight] ) + for flight in booking["flights"]: + if "co2_kg" not in flight: + pprint(booking) check_currency(booking) if prev_first_depart: