Skip to content

Commit

Permalink
Removed % from % indexed column.
Browse files Browse the repository at this point in the history
  • Loading branch information
toastisme committed Feb 7, 2024
1 parent bf73681 commit f1faabe
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions newsfragments/XXX.misc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Remove % from value in `% indexed` column in `dials.index` output.
2 changes: 1 addition & 1 deletion src/dials/algorithms/indexing/indexer.py
Original file line number Diff line number Diff line change
Expand Up @@ -920,7 +920,7 @@ def show_experiments(
str(i),
str(indexed_count),
str(unindexed_count),
f"{indexed_count / (indexed_count + unindexed_count):.1%}",
f"{indexed_count / (indexed_count + unindexed_count)*100:.1f}",
]
)
logger.info(dials.util.tabulate(rows, headers="firstrow"))
Expand Down

0 comments on commit f1faabe

Please sign in to comment.