--- a/eric7/QScintilla/Editor.py Fri Aug 20 14:11:49 2021 +0200 +++ b/eric7/QScintilla/Editor.py Fri Aug 20 14:19:13 2021 +0200 @@ -8542,9 +8542,11 @@ else: references.append( self.tr("{0:4d} {1}\n => {2}", - "line number, source code, file name").format( - reference.line, reference.codeLine.strip(), - self.project.getRelativePath(reference.modulePath)) + "line number, source code, file name") + .format( + reference.line, reference.codeLine.strip(), + self.project.getRelativePath(reference.modulePath) + ) ) referencePositions.append( (reference.modulePath, reference.line, reference.column)) @@ -8832,7 +8834,7 @@ def __cancelMouseHoverHelp(self): """ - Private slot cancelling the display of mouse hover help. + Private slot cancelling the display of mouse hover help. """ self.SendScintilla(QsciScintilla.SCI_CALLTIPCANCEL)