Skip to content

Commit

Permalink
Linting
Browse files Browse the repository at this point in the history
  • Loading branch information
grariel committed Jan 16, 2024
1 parent a4807bd commit 9f5fa08
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion granulate_utils/linux/process.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def process_exe(process: psutil.Process) -> str:
See https://github.com/giampaolo/psutil/pull/2062
"""
# Clear the "exe" cache on the process object. It can change after cache if it was cached during fork-exec.
process._exe = None # typing: ignore
process._exe = None # type: ignore
exe = process.exe()
if exe == "":
if is_process_zombie(process):
Expand Down

0 comments on commit 9f5fa08

Please sign in to comment.