Skip to content

Commit

Permalink
fix: type dict update to Dict generic type
Browse files Browse the repository at this point in the history
  • Loading branch information
taloric committed Sep 12, 2024
1 parent 39ba486 commit 76cce2b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/app/application/l7_flow_tracing.py
Original file line number Diff line number Diff line change
Expand Up @@ -2491,7 +2491,7 @@ def _same_span_set(lhs: SpanNode, rhs: SpanNode, spanset: str) -> bool:

def _connect_process_and_networks(
process_roots: List[SpanNode], process_leafs: List[SpanNode],
network_roots_with_req_id: dict[int, SpanNode],
network_roots_with_req_id: Dict[int, SpanNode],
network_leafs: List[SpanNode], flow_index_to_span: List[SpanNode],
related_flow_index_map: defaultdict(inner_defaultdict_int),
host_clock_correct_callback: Callable[[SpanNode, SpanNode], None]):
Expand Down

0 comments on commit 76cce2b

Please sign in to comment.