--- a/src/eric7/UI/BrowserModel.py Tue Apr 16 15:47:11 2024 +0200 +++ b/src/eric7/UI/BrowserModel.py Sat Apr 20 18:01:36 2024 +0200 @@ -393,7 +393,7 @@ @param path path of the deleted file or directory @type str - @param isDir flag indicating a deleted directory (defaults to False) + @param isDir flag indicating a deleted directory (defaults to False) (unused) @type bool (optional) """ parentPath = os.path.dirname(path) @@ -1110,7 +1110,7 @@ """ return self._lazyPopulation - def lessThan(self, other, column, order): # noqa: U100 + def lessThan(self, other, column, _order): """ Public method to check, if the item is less than the other one. @@ -1118,7 +1118,7 @@ @type BrowserItem @param column column number to use for the comparison @type int - @param order sort order (for special sorting) + @param _order sort order (for special sorting) (unused) @type Qt.SortOrder @return true, if this item is less than other @rtype bool @@ -1192,7 +1192,7 @@ @param dinfo dinfo is the string for the directory @type str - @param full flag indicating full path name should be displayed + @param full flag indicating full path name should be displayed (unused) @type bool """ self._dirName = os.path.abspath(dinfo) @@ -1441,7 +1441,7 @@ @param finfo the string for the file @type str - @param full flag indicating full pathname should be displayed + @param full flag indicating full path name should be displayed (unused) @type bool """ self._filename = os.path.abspath(finfo)