Skip to content

Commit

Permalink
Improve stats output
Browse files Browse the repository at this point in the history
  • Loading branch information
xarantolus committed Jan 7, 2023
1 parent d2fda29 commit c0e2bf2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion stats.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,6 @@ def replace_in_readme(mnemonic_count, opcode_count):
print(fmt.format("Total", total_opcodes, total_implemented, total_opcodes - total_implemented, "{:.2f}%".format(total_implemented / total_opcodes * 100), total_test_cases))


print(f"{total_full} implemented mnemonics, {total_partial} partially implemented mnemonics -> {total_full + total_partial} implemented mnemonics")
print(f"{total_full} fully implemented, {total_partial} partially implemented mnemonics -> {total_full + total_partial} total")

replace_in_readme(total_full + total_partial, total_implemented)

0 comments on commit c0e2bf2

Please sign in to comment.