Skip to content

Commit aad4b18

Browse files
committed
future-proof name
1 parent 820d3b9 commit aad4b18

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Lib/profiling/sampling/jsonl_collector.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ def export(self, filename):
8888
"samples_total": self._samples_total,
8989
},
9090
"entries",
91-
self._iter_agg_entries(),
91+
self._iter_final_agg_entries(),
9292
)
9393
self._write_message(output, self._build_end_record())
9494

@@ -189,7 +189,7 @@ def _normalize_export_location(location):
189189
normalized["end_col"] = end_col_offset
190190
return normalized
191191

192-
def _iter_agg_entries(self):
192+
def _iter_final_agg_entries(self):
193193
return [
194194
{
195195
"frame_id": frame_record["frame_id"],

0 commit comments

Comments
 (0)