eric6/E5Network/E5GoogleMail.py

changeset 8218
7c09585bd960
parent 8143
2c730d5fd177
child 8243
cc717c2ae956
equal deleted inserted replaced
8217:385f60c94548 8218:7c09585bd960
43 Constructor 43 Constructor
44 44
45 @param parent reference to the parent widget 45 @param parent reference to the parent widget
46 @type QWidget 46 @type QWidget
47 """ 47 """
48 super(E5GoogleMailAuthBrowser, self).__init__(parent) 48 super().__init__(parent)
49 49
50 self.__layout = QVBoxLayout(self) 50 self.__layout = QVBoxLayout(self)
51 51
52 from PyQt5.QtWebEngineWidgets import QWebEngineView 52 from PyQt5.QtWebEngineWidgets import QWebEngineView
53 self.__browser = QWebEngineView(self) 53 self.__browser = QWebEngineView(self)
111 Constructor 111 Constructor
112 112
113 @param parent reference to the parent object 113 @param parent reference to the parent object
114 @type QObject 114 @type QObject
115 """ 115 """
116 super(E5GoogleMail, self).__init__(parent=parent) 116 super().__init__(parent=parent)
117 117
118 self.__messages = [] 118 self.__messages = []
119 119
120 self.__session = None 120 self.__session = None
121 self.__clientConfig = {} 121 self.__clientConfig = {}

eric ide

mercurial