* Update .pre-commit-config.yaml * Fix ruff error --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
12 lines
199 B
Python
12 lines
199 B
Python
from __future__ import annotations
|
|
|
|
|
|
class AsyncNullContext:
|
|
__slots__ = ()
|
|
|
|
async def __aenter__(self) -> None:
|
|
pass
|
|
|
|
async def __aexit__(self, *_: object) -> None:
|
|
pass
|