Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
bbean23 committed Apr 6, 2024
1 parent a320f88 commit c7e7be3
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions opencsp/common/lib/render/figure_management.py
Original file line number Diff line number Diff line change
Expand Up @@ -563,8 +563,9 @@ def save_all_figures(output_path: str, format: str = None, timeout: float = None
for fig_record in fig_record_list:
# start the save
results = []
t = Thread(target=lambda: results.append(fig_record.save(
output_path, format=format, close_after_save=False)))
t = Thread(
target=lambda: results.append(fig_record.save(output_path, format=format, close_after_save=False))
)
t.start()

# wait for the save to finish
Expand Down

0 comments on commit c7e7be3

Please sign in to comment.