diff --git a/pontos/nvd/cve_change_history/api.py b/pontos/nvd/cve_change_history/api.py index 738b345a8..d47e15ea2 100644 --- a/pontos/nvd/cve_change_history/api.py +++ b/pontos/nvd/cve_change_history/api.py @@ -156,12 +156,3 @@ async def __aenter__(self) -> "CVEChangeHistoryApi": await super().__aenter__() return self - async def __aexit__( - self, - exc_type: Optional[Type[BaseException]], - exc_value: Optional[BaseException], - traceback: Optional[TracebackType], - ) -> Optional[bool]: - return await super().__aexit__( # type: ignore - exc_type, exc_value, traceback - )