eric7/QScintilla/Editor.py

branch
eric7
changeset 8522
4f263b89a293
parent 8519
fd4722a8f782
child 8524
595547ab8d6f
--- 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)
     

eric ide

mercurial