Skip to content

Commit

Permalink
child loop to .values()
Browse files Browse the repository at this point in the history
Co-authored-by: Pete Peterson <[email protected]>
  • Loading branch information
ktactac-ornl and peterfpeterson authored Oct 23, 2024
1 parent b44efe6 commit cde67ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mantidprofiler/diskrecord.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ def monitor(pid: int, logfile: Path, interval: Optional[float], show_bytes: bool

# get information from children
update_children(children, all_children(process))
for key, child in children.items():
for child in children.values():
try:
child_disk_after = child["process"].io_counters()

Expand Down

0 comments on commit cde67ca

Please sign in to comment.