Skip to content

Commit 820d3b9

Browse files
committed
ruff
1 parent 85ce978 commit 820d3b9

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Lib/profiling/sampling/jsonl_collector.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,9 @@ def _iter_agg_entries(self):
199199
for frame_record in self._frames
200200
]
201201

202-
def _write_chunked_records(self, output, base_record, chunk_field, entries):
202+
def _write_chunked_records(
203+
self, output, base_record, chunk_field, entries
204+
):
203205
for chunk in batched(entries, _CHUNK_SIZE):
204206
self._write_message(output, {**base_record, chunk_field: chunk})
205207

0 commit comments

Comments
 (0)