Files
stand/utils/utils.py
2022-05-22 21:50:38 +02:00

10 lines
208 B
Python

def make_key(df):
"""
encode the column names into the key,
this triggers a hard reload (like F5) when the columns change
"""
return "stand:" + "+".join(str(col) for col in df.columns)