Makes it possible to use :class:`GridOut` files with the async context manager protocol.
(self, exc_type: Any, exc_val: Any, exc_tb: Any)
| 1779 | return self |
| 1780 | |
| 1781 | def __exit__(self, exc_type: Any, exc_val: Any, exc_tb: Any) -> Any: |
| 1782 | """Makes it possible to use :class:`GridOut` files |
| 1783 | with the async context manager protocol. |
| 1784 | """ |
| 1785 | self.close() |
| 1786 | return False |
| 1787 | |
| 1788 | def fileno(self) -> NoReturn: |
| 1789 | raise io.UnsupportedOperation("fileno") |