From c45913483eda27c06100589ae37d2cc6efc78ffa Mon Sep 17 00:00:00 2001 From: Uri Smashnov Date: Thu, 19 Sep 2024 19:41:44 +0200 Subject: [PATCH] Style changes --- llm_studio/app_utils/utils.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/llm_studio/app_utils/utils.py b/llm_studio/app_utils/utils.py index a3a27a309..55c242684 100644 --- a/llm_studio/app_utils/utils.py +++ b/llm_studio/app_utils/utils.py @@ -1851,8 +1851,11 @@ def get_experiments( df.loc[df.status == "finished", "progress"] = "1.0" # make sure that if experiment is running the progress is at most 99% - df.loc[(df.status == "running") & - (pd.to_numeric(df.progress, errors='coerce') > 0.99), "progress"] = ".99" + df.loc[ + (df.status == "running") + & (pd.to_numeric(df.progress, errors="coerce") > 0.99), + "progress", + ] = ".99" df["info"] = np.where( (df["status"] == "running") & (df["eta"] != ""),