diff --git a/src/vipscore_common/data_utils.py b/src/vipscore_common/data_utils.py index 4bc6acd04183f757a0ca050c8c7a70da0b58b652..11b97e76815d5e7a2373d7e7c4c94f9ded1a9945 100644 --- a/src/vipscore_common/data_utils.py +++ b/src/vipscore_common/data_utils.py @@ -67,7 +67,7 @@ def get_dataframe_from_weather_observations(weather_observations: list, timezone def get_result_list_from_dataframe(df: DataFrame): """ Create a list of VIPS Result objects from a dataframe - Requires timeseries as index and a column named WARNING_STATUS with INT values ranging from 0-4 (see Result class) + Requires timeseries as index and a column named WARNING_STATUS with INT values ranging from 0-4 (see entities.Result class) """ result_list = [] dictframe = df.to_dict(orient="index")