normalize icaos as uppercase

This commit is contained in:
Jakob Ketterl 2023-09-09 00:45:58 +02:00
parent 6eb1413941
commit dd6fc4581c

View file

@ -20,7 +20,7 @@ class AirplaneLocation(LatLngLocation):
class IcaoSource(Source):
def __init__(self, icao: str, humanReadable: str = None):
self.icao = icao
self.icao = icao.upper()
self.humanReadable = humanReadable
def getKey(self) -> str: