Skip to content

Commit

Permalink
Fix astropy pformat_all deprecation
Browse files Browse the repository at this point in the history
Astropy's Table.pformat_all() is now deprecated -- Table.pformat() is an exact replacement.
  • Loading branch information
dhirving committed Feb 26, 2025
1 parent 1164789 commit 478abd9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/lsst/ctrl/mpexec/cmdLineFwk.py
Original file line number Diff line number Diff line change
Expand Up @@ -902,7 +902,7 @@ def _summarize_qgraph(self, qgraph: QuantumGraph) -> int:
self.report = Report(qgraphSummary=qgraph.getSummary())
if _LOG.isEnabledFor(logging.INFO):
qg_task_table = self._generateTaskTable()
qg_task_table_formatted = "\n".join(qg_task_table.pformat_all())
qg_task_table_formatted = "\n".join(qg_task_table.pformat())
quanta_str = "quantum" if n_quanta == 1 else "quanta"
n_tasks = len(qgraph.taskGraph)
n_tasks_plural = "" if n_tasks == 1 else "s"
Expand Down

0 comments on commit 478abd9

Please sign in to comment.