Skip to content

Commit bc4f386

Browse files
committed
Fix base profiling export parameter
1 parent d0b3f2b commit bc4f386

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

stdlib/profiling/sampling.pyi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ class Collector(ABC):
1818
def collect(self, stack_frames, timestamps_us=None) -> None: ...
1919
def collect_failed_sample(self) -> None: ...
2020
@abstractmethod
21-
def export(self, output_path: StrOrBytesPath) -> None: ...
21+
def export(self, filename: StrOrBytesPath) -> None: ...
2222

2323
class PstatsCollector(Collector):
2424
def __init__(self, sample_interval_usec: int, *, skip_idle: bool = False) -> None: ...

0 commit comments

Comments
 (0)