eric6/WebBrowser/ClosedTabsManager.py

changeset 7271
2cac5b7abcce
parent 7229
53054eb5b15a
child 7360
9190402e4505
--- a/eric6/WebBrowser/ClosedTabsManager.py	Wed Sep 25 19:00:09 2019 +0200
+++ b/eric6/WebBrowser/ClosedTabsManager.py	Wed Sep 25 19:11:13 2019 +0200
@@ -34,9 +34,11 @@
         @param other reference to the object to compare against (ClosedTab)
         @return flag indicating equality of the tabs (boolean)
         """
-        return self.url == other.url and \
-            self.title == other.title and \
+        return (
+            self.url == other.url and
+            self.title == other.title and
             self.position == other.position
+        )
 
 
 class ClosedTabsManager(QObject):

eric ide

mercurial