Skip to content

Commit 78f8087

Browse files
committed
Fix indentation
1 parent bc287f0 commit 78f8087

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Lib/test/libregrtest/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -787,7 +787,7 @@ def _get_process_memory_usage_windows(pid: int) -> int | None:
787787
handle = _winapi.OpenProcess(_winapi.PROCESS_QUERY_LIMITED_INFORMATION,
788788
False, pid)
789789
try:
790-
mem_info = _winapi.GetProcessMemoryInfo(handle)
790+
mem_info = _winapi.GetProcessMemoryInfo(handle)
791791
finally:
792792
_winapi.CloseHandle(handle)
793793
return mem_info['WorkingSetSize']

0 commit comments

Comments
 (0)