This commit is contained in:
alrevuelta 2023-10-11 12:10:35 +02:00
parent d3b3d1f0fe
commit 46ac0e9d20
No known key found for this signature in database
GPG Key ID: F345C9F3CCDB886E

View File

@ -10,7 +10,6 @@ latencies = []
with open(file, "r") as file:
for line in file.readlines():
if field in line:
print(field, line)
x = line.strip().split(field)[1].split(" ")[0]
latencies.append(int(x))