93 self.__outdatedProc = None |
93 self.__outdatedProc = None |
94 self.__shuttingDown = False |
94 self.__shuttingDown = False |
95 |
95 |
96 self.__vulnerabilityChecker = PipVulnerabilityChecker(self, self) |
96 self.__vulnerabilityChecker = PipVulnerabilityChecker(self, self) |
97 |
97 |
98 self.__ui.shutdown.connect(self.__shutdown) |
98 with contextlib.suppress(AttributeError): |
|
99 self.__ui.shutdown.connect(self.__shutdown) |
99 |
100 |
100 def getNetworkAccessManager(self): |
101 def getNetworkAccessManager(self): |
101 """ |
102 """ |
102 Public method to get a reference to the network access manager object. |
103 Public method to get a reference to the network access manager object. |
103 |
104 |