diff --git a/vizro-core/src/vizro/managers/_data_manager.py b/vizro-core/src/vizro/managers/_data_manager.py index 9383efe1a..0452f192c 100644 --- a/vizro-core/src/vizro/managers/_data_manager.py +++ b/vizro-core/src/vizro/managers/_data_manager.py @@ -161,7 +161,7 @@ def __init__(self, data: pd.DataFrame): def load(self) -> pd.DataFrame: """Loads data. - Returns a copy of the data. This is not necessary if we are careful to not do any inplace=True operations, + Returns a copy of the data. This is not necessary if we are careful to not do any inplace=True operations, but probably safest to leave it here. """ return self.__data.copy()