From 9813cc3575e51b184ea17ddc71e78cfd0eb216b2 Mon Sep 17 00:00:00 2001 From: bytedream Date: Thu, 3 Feb 2022 19:39:24 +0100 Subject: [PATCH] Added ms to average ping --- analyze.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/analyze.py b/analyze.py index 2481254..053d5d2 100644 --- a/analyze.py +++ b/analyze.py @@ -39,7 +39,7 @@ def v1(): print(f'Column {i}') print(f'\tTimeouts: {round(ctimeout / row_count * 100, 2)}% ({ctimeout} of {row_count} requests)') - print(f'\tAverage ping: {round(csum / ccounts, 4)} ({ccounts} of {row_count} requests)') + print(f'\tAverage ping: {round(csum / ccounts, 4)}ms ({ccounts} of {row_count} requests)') if __name__ == '__main__':