Skip to content

Commit

Permalink
Lint with black-v24, update poetry lockfile
Browse files Browse the repository at this point in the history
  • Loading branch information
nikochiko committed Feb 20, 2024
1 parent f82d5f4 commit 233afde
Show file tree
Hide file tree
Showing 2 changed files with 46 additions and 24 deletions.
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
66 changes: 43 additions & 23 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 233afde

Please sign in to comment.