Properly export types from psutil._compat (#6112)

This commit is contained in:
Jake Bailey
2021-10-04 17:11:45 -07:00
committed by GitHub
parent 5f1adbfbd2
commit e19b20032b

View File

@@ -1,6 +1,8 @@
FileNotFoundError = FileNotFoundError
PermissionError = PermissionError
ProcessLookupError = ProcessLookupError
InterruptedError = InterruptedError
ChildProcessError = ChildProcessError
FileExistsError = FileExistsError
from builtins import (
ChildProcessError as ChildProcessError,
FileExistsError as FileExistsError,
FileNotFoundError as FileNotFoundError,
InterruptedError as InterruptedError,
PermissionError as PermissionError,
ProcessLookupError as ProcessLookupError,
)