mult-test.py: fix error count not formatting properly
This commit is contained in:
parent
24b62d109a
commit
31ec6b2697
|
@ -24,4 +24,4 @@ for x in range(top_value):
|
|||
if len(errors) == 0:
|
||||
print("Testing finished, no miscalculations detected.\nIt's safe to use!")
|
||||
else:
|
||||
print("Testing failed with {len(errors)} errors.")
|
||||
print(f"Testing failed with {len(errors)} errors.")
|
||||
|
|
Loading…
Reference in New Issue