From 9c406a98fe05ea336d8313a8244ee2b524ca8061 Mon Sep 17 00:00:00 2001 From: Nicolas Thumann Date: Fri, 10 Nov 2023 09:34:55 +0100 Subject: [PATCH] Remove: Unnecessary method MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Björn Ricks --- pontos/nvd/cve_change_history/api.py | 9 --------- 1 file changed, 9 deletions(-) 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 - )