2523:139f182b72f6 | 2525:8b507a9a2d40 |
---|---|
4 # | 4 # |
5 | 5 |
6 """ | 6 """ |
7 Module implementing an importer for Chrome bookmarks. | 7 Module implementing an importer for Chrome bookmarks. |
8 """ | 8 """ |
9 | |
10 from __future__ import unicode_literals # __IGNORE_WARNING__ | |
9 | 11 |
10 import os | 12 import os |
11 import json | 13 import json |
12 | 14 |
13 from PyQt4.QtCore import QCoreApplication, QDate, Qt | 15 from PyQt4.QtCore import QCoreApplication, QDate, Qt |
76 Constructor | 78 Constructor |
77 | 79 |
78 @param id source ID (string) | 80 @param id source ID (string) |
79 @param parent reference to the parent object (QObject) | 81 @param parent reference to the parent object (QObject) |
80 """ | 82 """ |
81 super().__init__(id, parent) | 83 super(ChromeImporter, self).__init__(id, parent) |
82 | 84 |
83 self.__fileName = "" | 85 self.__fileName = "" |
84 | 86 |
85 def setPath(self, path): | 87 def setPath(self, path): |
86 """ | 88 """ |