mult-test.py: fix error count not formatting properly

This commit is contained in:
dymik739 2023-05-22 22:16:17 +03:00
parent 24b62d109a
commit 31ec6b2697
1 changed files with 1 additions and 1 deletions

View File

@ -24,4 +24,4 @@ for x in range(top_value):
if len(errors) == 0: if len(errors) == 0:
print("Testing finished, no miscalculations detected.\nIt's safe to use!") print("Testing finished, no miscalculations detected.\nIt's safe to use!")
else: else:
print("Testing failed with {len(errors)} errors.") print(f"Testing failed with {len(errors)} errors.")