--- a/PluginRefactoringRope.py Wed Oct 23 17:45:58 2024 +0200 +++ b/PluginRefactoringRope.py Sat Oct 26 15:50:43 2024 +0200 @@ -22,22 +22,25 @@ from .RefactoringRope.RopeUtilities import isRemoteFileName # Start-Of-Header -name = "Refactoring Rope Plugin" -author = "Detlev Offenbach <detlev@die-offenbachs.de>" -autoactivate = True -deactivateable = True -version = "10.7.3" -className = "RefactoringRopePlugin" -packageName = "RefactoringRope" -shortDescription = "Refactoring and Code Assist using the Rope library." -longDescription = ( - """This plug-in implements refactoring functionality using the Rope""" - """ refactoring library. Additionally it implements an auto-completion,""" - """ call-tips and code documentation provider as well as a mouse""" - """ click handler.""" -) -pyqtApi = 2 -doNotCompile = True +__header__ = { + "name": "Refactoring Rope Plugin", + "author": "Detlev Offenbach <detlev@die-offenbachs.de>", + "autoactivate": True, + "deactivateable": True, + "version": "10.7.4", + "className": "RefactoringRopePlugin", + "packageName": "RefactoringRope", + "shortDescription": "Refactoring and Code Assist using the Rope library.", + "longDescription": ( + """This plug-in implements refactoring functionality using the Rope""" + """ refactoring library. Additionally it implements an auto-completion,""" + """ call-tips and code documentation provider as well as a mouse""" + """ click handler.""" + ), + "hasCompiledForms": True, + "pyqtApi": 2, + "doNotCompile": True, +} # End-Of-Header error = ""