From 6d5b4420dfc9166b1ece03180f7f0bc2d1faa935 Mon Sep 17 00:00:00 2001 From: Sven Augustin Date: Sun, 22 May 2022 21:52:57 +0200 Subject: [PATCH] clearer description --- utils/utils.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/utils/utils.py b/utils/utils.py index 5317770..a95a151 100644 --- a/utils/utils.py +++ b/utils/utils.py @@ -1,8 +1,8 @@ def make_key(df): """ - encode the column names into the key, - this triggers a hard reload (like F5) when the columns change + encode the dataframe's column names into a key, + this triggers a hard reload (like F5) of the AgGrid if the columns change """ return "stand:" + "+".join(str(col) for col in df.columns)