Skip to content

Commit

Permalink
test?
Browse files Browse the repository at this point in the history
  • Loading branch information
roi-granulate committed Jun 18, 2024
1 parent 9152021 commit 68c162c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gprofiler/profilers/python_ebpf.py
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ def _register_process_selectors(self) -> None:

def _unregister_process_selectors(self) -> None:
assert self.process_selector
for selector_key in self.process_selector.get_map().values():
for selector_key in list(self.process_selector.get_map().values()):
self.process_selector.unregister(selector_key.fileobj)

def _read_process_standard_outputs(self) -> Tuple[Optional[str], Optional[str]]:
Expand Down

0 comments on commit 68c162c

Please sign in to comment.