Skip to content

Commit f6ac8cc

Browse files
committed
fixup! fixup! fixup! Merge remote-tracking branch 'upstream/main' into cputime
1 parent cb6a43d commit f6ac8cc

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Lib/profiling/sampling/stack_collector.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,8 @@ def process_frames(self, frames):
2525

2626

2727
class CollapsedStackCollector(StackTraceCollector):
28-
def __init__(self):
28+
def __init__(self, *args, **kwargs):
29+
super().__init__(*args, **kwargs)
2930
self.stack_counter = collections.Counter()
3031

3132
def process_frames(self, frames):

0 commit comments

Comments
 (0)