--- a/src/eric7/EricWidgets/EricSingleApplication.py Tue Dec 19 11:04:03 2023 +0100 +++ b/src/eric7/EricWidgets/EricSingleApplication.py Tue Dec 19 19:57:08 2023 +0100 @@ -68,7 +68,8 @@ """ Private method used to handle the "Open File" command. - @param fname filename to be opened (string) + @param fname filename to be opened + @type str """ ericApp().getObject("ViewManager").openSourceFile(fname) @@ -76,7 +77,8 @@ """ Private method used to handle the "Open Project" command. - @param pfname filename of the project to be opened (string) + @param pfname filename of the project to be opened + @type str """ ericApp().getObject("Project").openProject(pfname) @@ -84,7 +86,8 @@ """ Private method used to handle the "Open Multi-Project" command. - @param pfname filename of the multi project to be opened (string) + @param pfname filename of the multi project to be opened + @type str """ ericApp().getObject("MultiProject").openMultiProject(pfname) @@ -92,7 +95,8 @@ """ Private method used to handle the "Arguments" command. - @param argsStr space delimited list of command args(string) + @param argsStr space delimited list of command args + @type str """ ericApp().getObject("DebugUI").setArgvHistory(argsStr) @@ -136,7 +140,8 @@ """ Private method to open a file in the application server. - @param fname name of file to be opened (string) + @param fname name of file to be opened + @type str """ self.sendCommand(SAOpenFile, [os.path.abspath(fname)]) @@ -144,7 +149,8 @@ """ Private method to open a project in the application server. - @param pfname name of the projectfile to be opened (string) + @param pfname name of the projectfile to be opened + @type str """ self.sendCommand(SAOpenProject, [os.path.abspath(pfname)]) @@ -152,7 +158,8 @@ """ Private method to open a project in the application server. - @param pfname name of the projectfile to be opened (string) + @param pfname name of the projectfile to be opened + @type str """ self.sendCommand(SAOpenMultiProject, [os.path.abspath(pfname)]) @@ -160,6 +167,7 @@ """ Private method to set the command arguments in the application server. - @param argsStr space delimited list of command args (string) + @param argsStr space delimited list of command args + @type str """ self.sendCommand(SAArguments, [argsStr])