Fix LUX country code in ESA list

This commit is contained in:
Edward Betts 2024-04-16 21:52:30 +01:00
parent e1688629a3
commit 875f50e684

View file

@ -22,7 +22,7 @@ def format_list_with_ampersand(items: list[str]) -> str:
return ""
ESA = "AUT,BEL,CZE,DNK,FIN,FRA,DEU,GRC,IRE,ITA,LUZ,NLD,NOR,POL,PRT,ROU,ESP,SWE,CHE,GBR"
ESA = "AUT,BEL,CZE,DNK,FIN,FRA,DEU,GRC,IRE,ITA,LUX,NLD,NOR,POL,PRT,ROU,ESP,SWE,CHE,GBR"
def get_country(alpha_2: str) -> pycountry.db.Country | None: