diff --git a/litestar/stores/base.py b/litestar/stores/base.py index 6042a6057d..34aa514fca 100644 --- a/litestar/stores/base.py +++ b/litestar/stores/base.py @@ -78,10 +78,10 @@ async def expires_in(self, key: str) -> int | None: """ raise NotImplementedError - async def __aenter__(self) -> None: + async def __aenter__(self) -> None: # noqa: B027 pass - async def __aexit__( + async def __aexit__( # noqa: B027 self, exc_type: type[BaseException] | None, exc_val: BaseException | None,