remove __del__() from AsyncDiskClient

This commit is contained in:
2025-07-18 07:38:07 +03:00
parent 092cf89ec2
commit 78d32fab23
-3
View File
@@ -84,9 +84,6 @@ class AsyncDiskClient:
loop = asyncio.new_event_loop() loop = asyncio.new_event_loop()
loop.run_until_complete(self.session.close()) loop.run_until_complete(self.session.close())
def __del__(self) -> None:
self._cleanup()
async def _wait_for_operation_to_finish(self, operation_id: str) -> bool: async def _wait_for_operation_to_finish(self, operation_id: str) -> bool:
""" """
Wait for an operation to finish. Wait for an operation to finish.