Estoy desarrollando una herramienta es Qgis3 usando PyQt5. Estoy añadiendo columnas utilizando un botón y el establecimiento de nombres de columna utilizando 'setHorizontalHeaderItem'. Pero da Ninguno al intentar leerlo. El siguiente es el código.
count=self.dlg.tableWidget.columnCount()
self.dlg.tableWidget.setColumnCount(count+1)
header= QTableWidgetItem(str(count+1))
self.dlg.tableWidget.setHorizontalHeaderItem(count+1,header)
self.dlg.lineEdit_4.setText(self.dlg.tableWidget.horizontalHeaderItem(count+1).text())
da un error- 'AttributeError: 'NoneType' object has no attribute 'text' ' No puedo identificar el error.