diff --git a/test_module.py b/test_module.py index b813cc6..a712b33 100644 --- a/test_module.py +++ b/test_module.py @@ -24,8 +24,8 @@ weatherflow = WeatherFlow(station_id, api_token) -# data: WeatherFlowStationData = weatherflow.get_station() -# print("STATION NAME: ", data.station_name) +data: WeatherFlowStationData = weatherflow.get_station() +print("STATION NAME: ", data.station_name) data: WeatherFlowForecastData = weatherflow.get_forecast() print("TEMPERATURE: ", data.temperature)