Report scaling used

This commit is contained in:
Jose Gracia 2023-07-27 10:46:52 +02:00
parent c2b6cc5c35
commit b969da0cde

View file

@ -217,8 +217,9 @@ def pretty_print(metrics, stream=sys.stdout):
stream.write(table)
def print_scaling(scaling, stream=sys.stdout):
stream.write(f'CScal was calculated for {scaling} scaling.\n')
def main():
@ -239,6 +240,7 @@ def main():
dump(metrics)
pretty_print(metrics)
print_scaling(args.scaling)
if __name__ == "__main__":
main()