117 self.networkList.header().resizeSections( |
117 self.networkList.header().resizeSections( |
118 QHeaderView.ResizeMode.ResizeToContents |
118 QHeaderView.ResizeMode.ResizeToContents |
119 ) |
119 ) |
120 self.networkList.header().setStretchLastSection(True) |
120 self.networkList.header().setStretchLastSection(True) |
121 |
121 |
122 def closeEvent(self, evt): |
122 def closeEvent(self, _evt): |
123 """ |
123 """ |
124 Protected method to handle a window close event. |
124 Protected method to handle a window close event. |
125 |
125 |
126 @param evt reference to the close event |
126 @param _evt reference to the close event (unused) |
127 @type QCloseEvent |
127 @type QCloseEvent |
128 """ |
128 """ |
129 self.__scanTimer.stop() |
129 self.__scanTimer.stop() |
130 |
130 |
131 @pyqtSlot(bool) |
131 @pyqtSlot(bool) |