--- a/src/eric7/UI/CodeDocumentationViewer.py Sun Nov 06 11:22:39 2022 +0100 +++ b/src/eric7/UI/CodeDocumentationViewer.py Mon Nov 07 17:19:58 2022 +0100 @@ -89,8 +89,12 @@ self.__verticalLayout.setContentsMargins(0, 0, 0, 0) try: - from PyQt6.QtWebEngineCore import QWebEngineSettings - from PyQt6.QtWebEngineWidgets import QWebEngineView + from PyQt6.QtWebEngineCore import ( # __IGNORE_WARNING_I10__ + QWebEngineSettings, + ) + from PyQt6.QtWebEngineWidgets import ( # __IGNORE_WARNING_I10__ + QWebEngineView, + ) self.__contents = QWebEngineView(self) self.__contents.page().linkHovered.connect(self.__showLink)