From 4b096fe5bd73c149e5614db78409b4ea70f153f3 Mon Sep 17 00:00:00 2001 From: Antony Milne <49395058+antonymilne@users.noreply.github.com> Date: Wed, 10 Apr 2024 11:26:05 +0100 Subject: [PATCH] Update vizro-core/src/vizro/managers/_data_manager.py Co-authored-by: Petar Pejovic <108530920+petar-qb@users.noreply.github.com> Signed-off-by: Antony Milne <49395058+antonymilne@users.noreply.github.com> --- vizro-core/src/vizro/managers/_data_manager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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()