50 @param withPrivate flag indicating to load private TLDs as well |
50 @param withPrivate flag indicating to load private TLDs as well |
51 @type bool |
51 @type bool |
52 @param parent reference to the parent object |
52 @param parent reference to the parent object |
53 @type QObject |
53 @type QObject |
54 """ |
54 """ |
55 super(E5TldExtractor, self).__init__(parent) |
55 super().__init__(parent) |
56 |
56 |
57 self.__withPrivate = withPrivate |
57 self.__withPrivate = withPrivate |
58 self.__dataFileName = "" |
58 self.__dataFileName = "" |
59 self.__dataSearchPaths = [] |
59 self.__dataSearchPaths = [] |
60 |
60 |