47 Constructor |
47 Constructor |
48 |
48 |
49 @param parent parent |
49 @param parent parent |
50 @type QObject |
50 @type QObject |
51 """ |
51 """ |
52 super(Pip, self).__init__(parent) |
52 super().__init__(parent) |
53 |
53 |
54 # attributes for the network objects |
54 # attributes for the network objects |
55 self.__networkManager = QNetworkAccessManager(self) |
55 self.__networkManager = QNetworkAccessManager(self) |
56 self.__networkManager.proxyAuthenticationRequired.connect( |
56 self.__networkManager.proxyAuthenticationRequired.connect( |
57 proxyAuthenticationRequired) |
57 proxyAuthenticationRequired) |