Skip to content

Commit cc9e9ab

Browse files
Remove depth
1 parent c9c34a5 commit cc9e9ab

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Lib/profiling/sampling/pstats_collector.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ def _process_frames(self, frames):
4343
def collect(self, stack_frames):
4444
if stack_frames and hasattr(stack_frames[0], "awaited_by"):
4545
# Async frame processing
46-
for frames, thread_id, _depth in self._iter_async_frames(stack_frames):
46+
for frames, thread_id in self._iter_async_frames(stack_frames):
4747
self._process_frames(frames)
4848
else:
4949
# Regular frame processing

0 commit comments

Comments
 (0)