Skip to content

Commit

Permalink
Ensure types are always int
Browse files Browse the repository at this point in the history
  • Loading branch information
steckhelena committed Jul 16, 2022
1 parent 07c3066 commit 8be4d99
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions process_results.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,9 @@ def process_pcap_tcp(experiment_result: "ExperimentResult"):
]
)
for beginning, end in zip(godash_timestamps_before, godash_timestamps_after):
beginning = int(beginning)
end = int(end)

segment_time = (end - beginning) / 1000

dl_05 = 0
Expand Down Expand Up @@ -265,6 +268,9 @@ def process_pcap_quic(experiment_result: "ExperimentResult"):
]
)
for beginning, end in zip(godash_timestamps_before, godash_timestamps_after):
beginning = int(beginning)
end = int(end)

segment_time = (end - beginning) / 1000

dl_05 = 0
Expand Down

0 comments on commit 8be4d99

Please sign in to comment.