From a45db0afb71108e27dcc5329ade8896876597400 Mon Sep 17 00:00:00 2001 From: April Date: Fri, 21 Oct 2022 22:36:14 -0700 Subject: [PATCH] Return the stations list in getTideStations() --- Util/MachineProductCfg.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Util/MachineProductCfg.py b/Util/MachineProductCfg.py index 83e2dc8..fdd8691 100644 --- a/Util/MachineProductCfg.py +++ b/Util/MachineProductCfg.py @@ -36,6 +36,8 @@ def getTideStations(): if "TideStation" in i['@key'] and i['@value'] != "": stations.append(i['@value'].split("_")[2]) + return stations + def getAirportCodes(): """ Returns all of the airport identifiers present in the MachineProductCfg """ airports = []