Lior

Results 2 comments of Lior

Hi, I would love to know if the method I presented is correct, because if so, I think it can be used by a lot of people. Thank you very...

Thank you, @roman-right! I implemented a context manager like this: ```python class MongoClient: _client: AsyncIOMotorClient _database: str def __init__(self, connection_string: str, database: str) -> None: self._client = AsyncIOMotorClient(connection_string) self._database =...