Skip to content

Commit 3cfe6ee

Browse files
committed
We don't need the round() here.
1 parent a7c1873 commit 3cfe6ee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

deadman

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -460,7 +460,7 @@ class Ping:
460460
else:
461461
us = 0.0
462462

463-
res.rtt = float(round(ms + us / 1000.0))
463+
res.rtt = float(ms + us / 1000.0)
464464
res.ttl = int(ping_details[0]["ttl"])
465465
else:
466466
res.rtt = 0

0 commit comments

Comments
 (0)