eric6/WebBrowser/Bookmarks/BookmarksManager.py

changeset 8218
7c09585bd960
parent 8143
2c730d5fd177
child 8227
349308e84eeb
--- a/eric6/WebBrowser/Bookmarks/BookmarksManager.py	Sat Apr 10 18:31:17 2021 +0200
+++ b/eric6/WebBrowser/Bookmarks/BookmarksManager.py	Sat Apr 10 18:38:27 2021 +0200
@@ -55,7 +55,7 @@
         
         @param parent reference to the parent object (QObject)
         """
-        super(BookmarksManager, self).__init__(parent)
+        super().__init__(parent)
         
         self.__saveTimer = AutoSaver(self, self.save)
         self.entryAdded.connect(self.__saveTimer.changeOccurred)
@@ -529,7 +529,7 @@
         @param parent reference to the parent node (BookmarkNode)
         @param row row number of bookmark (integer)
         """
-        super(RemoveBookmarksCommand, self).__init__(
+        super().__init__(
             QCoreApplication.translate("BookmarksManager", "Remove Bookmark"))
         
         self._row = row
@@ -603,7 +603,7 @@
         @param title flag indicating a change of the title (True) or
             the URL (False) (boolean)
         """
-        super(ChangeBookmarkCommand, self).__init__()
+        super().__init__()
         
         self._bookmarksManager = bookmarksManager
         self._title = title

eric ide

mercurial