diff options
Diffstat (limited to 'linuxnamespaces')
-rw-r--r-- | linuxnamespaces/__init__.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/linuxnamespaces/__init__.py b/linuxnamespaces/__init__.py index ce37150..9332a06 100644 --- a/linuxnamespaces/__init__.py +++ b/linuxnamespaces/__init__.py @@ -801,7 +801,9 @@ class _AsyncCopier: def async_copyfd( - from_fd: FileDescriptor, to_fd: FileDescriptor, count: int | None = None + from_fd: FileDescriptorLike, + to_fd: FileDescriptorLike, + count: int | None = None, ) -> asyncio.Future[int]: """Copy the given number of bytes from the first file descriptor to the second file descriptor in an asyncio context. Both copies are performed |