Enter the async context manager and set this context as current. Returns: This context instance.
(self)
| 503 | self._token = None |
| 504 | |
| 505 | async def __aenter__(self) -> TortoiseContext: |
| 506 | """ |
| 507 | Enter the async context manager and set this context as current. |
| 508 | |
| 509 | Returns: |
| 510 | This context instance. |
| 511 | """ |
| 512 | self.__enter__() |
| 513 | return self |
| 514 | |
| 515 | async def __aexit__(self, exc_type: Any, exc_val: Any, exc_tb: Any) -> None: |
| 516 | """ |