From 13b99c3464324f3df76c1bf686d2d671621a1d01 Mon Sep 17 00:00:00 2001 From: Kaustubh Maske Patil <37668193+nikochiko@users.noreply.github.com> Date: Tue, 20 Feb 2024 19:04:35 +0530 Subject: [PATCH] Lint with black --- bots/models.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/bots/models.py b/bots/models.py index 3a440ab73..c55ef1f74 100644 --- a/bots/models.py +++ b/bots/models.py @@ -935,7 +935,9 @@ def to_df_format( else None ), # only show first feedback as per Sean's request "Analysis JSON": message.analysis_result, - "Run Time": message.saved_run.run_time if message.saved_run else 0, # user messages have no run/run_time + "Run Time": ( + message.saved_run.run_time if message.saved_run else 0 + ), # user messages have no run/run_time } rows.append(row) df = pd.DataFrame.from_records(