Skip to content

Commit

Permalink
Typo
Browse files Browse the repository at this point in the history
Co-authored-by: Anshuman Mohan <[email protected]>
  • Loading branch information
polybeandip and anshumanmohan authored Dec 11, 2024
1 parent 80b0ef4 commit d2e4aa5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontends/queues/evaluation/parse_pcap.py
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ def mac_addr(addr):
# compute number of pops between current and previous packet's arrival
pop_time = (prev_time % POP_TICK) + prev_time
num_pops = int((time - pop_time) // POP_TICK) if time > pop_time else 0
# keep track of number of unpopped packet's
# keep track of number of unpopped packets
pkts_in_switch = 0 if pkts_in_switch < num_pops else pkts_in_switch - num_pops
# insert `num_pops` pops
for _ in range(num_pops):
Expand Down

0 comments on commit d2e4aa5

Please sign in to comment.