From 4d360b86f1dae89336e8fe6ca6ab14241e07cc35 Mon Sep 17 00:00:00 2001 From: samthakur587 Date: Fri, 10 May 2024 13:40:53 +0530 Subject: [PATCH] a hello unit test in helper --- helpers.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/helpers.py b/helpers.py index 84878a9..ab53c84 100644 --- a/helpers.py +++ b/helpers.py @@ -395,3 +395,6 @@ def init_session(mode: str = "keys") -> None: json_data = st.session_state.leaderboard data = {model: 0 for model in json_data.index} st.session_state["vote_counts"] = json_data + +def hello(): + return "Hello, World!" \ No newline at end of file