This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Asynchronous file open/close | |
# https://nullprogram.com/blog/2020/09/04/ | |
import asyncio | |
class _AsyncOpen(): | |
def __init__(self, args, kwargs): | |
self._args = args | |
self._kwargs = kwargs |