mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-09 21:46:42 +08:00
Properly export types from psutil._compat (#6112)
This commit is contained in:
@@ -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,
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user