(self: AsyncGridFSBucket, *args: Any, **kwargs: Any)
| 391 | # PyMongo does not support AsyncGridFSBucket.drop(), emulate it. |
| 392 | @_csot.apply |
| 393 | async def drop(self: AsyncGridFSBucket, *args: Any, **kwargs: Any) -> None: |
| 394 | await self._files.drop(*args, **kwargs) |
| 395 | await self._chunks.drop(*args, **kwargs) |
| 396 | |
| 397 | if not hasattr(bucket, "drop"): |
| 398 | bucket.drop = drop.__get__(bucket) |
no outgoing calls