Skip to content

Commit

Permalink
Fix Typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Sumit112192 committed Jul 30, 2024
1 parent e1b4214 commit 5b94762
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tardis/transport/montecarlo/packet_trackers.py
Original file line number Diff line number Diff line change
Expand Up @@ -199,10 +199,10 @@ def track_line_interaction(self, r_packet):
] = r_packet.last_interaction_in_nu
self.line_interaction[self.num_line_interactions][

Check warning on line 200 in tardis/transport/montecarlo/packet_trackers.py

View check run for this annotation

Codecov / codecov/patch

tardis/transport/montecarlo/packet_trackers.py#L200

Added line #L200 was not covered by tests
"in_id"
] = r_packet.last_interaction_in_id
] = r_packet.last_line_interaction_in_id
self.line_interaction[self.num_line_interactions][

Check warning on line 203 in tardis/transport/montecarlo/packet_trackers.py

View check run for this annotation

Codecov / codecov/patch

tardis/transport/montecarlo/packet_trackers.py#L203

Added line #L203 was not covered by tests
"out_id"
] = r_packet.last_interaction_out_id
] = r_packet.last_line_interaction_out_id
self.num_line_interactions += 1
self.interaction_id += 1

Check warning on line 207 in tardis/transport/montecarlo/packet_trackers.py

View check run for this annotation

Codecov / codecov/patch

tardis/transport/montecarlo/packet_trackers.py#L206-L207

Added lines #L206 - L207 were not covered by tests

Expand Down

0 comments on commit 5b94762

Please sign in to comment.