Skip to content

Commit

Permalink
Lint with black
Browse files Browse the repository at this point in the history
  • Loading branch information
nikochiko committed Feb 20, 2024
1 parent f82d5f4 commit 13b99c3
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion bots/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down

0 comments on commit 13b99c3

Please sign in to comment.