src/eric7/Utilities/__init__.py

branch
eric7
changeset 10949
2057b1b198a5
parent 10944
ff77c9a96a80
child 11019
27cd57e98461
child 11090
f5f5f5803935
diff -r 89b36a39fe69 -r 2057b1b198a5 src/eric7/Utilities/__init__.py
--- a/src/eric7/Utilities/__init__.py	Sat Oct 05 10:28:34 2024 +0200
+++ b/src/eric7/Utilities/__init__.py	Sat Oct 05 11:35:07 2024 +0200
@@ -1073,9 +1073,7 @@
     try:
         from PyQt6 import QtWebEngineCore  # noqa: I101, I102
 
-        info.append(
-            f"  PyQt6-WebEngine {QtWebEngineCore.PYQT_WEBENGINE_VERSION_STR}"
-        )
+        info.append(f"  PyQt6-WebEngine {QtWebEngineCore.PYQT_WEBENGINE_VERSION_STR}")
     except (AttributeError, ImportError):
         info.append("  PyQt6-WebEngine not installed")
     info.append(f"  PyQt6-QScintilla {QSCINTILLA_VERSION_STR}")
@@ -1131,9 +1129,7 @@
             info.append("Plugin Version Numbers")
             info.append("======================")
             for pluginModuleName in sorted(versions):
-                info.append(
-                    f"  {pluginModuleName} {versions[pluginModuleName]}"
-                )
+                info.append(f"  {pluginModuleName} {versions[pluginModuleName]}")
 
     return linesep.join(info)
 

eric ide

mercurial