To all who maintain kiwidude-based plugins: There is a problem in common_utils.CheckableTableWidgetItem(). The line
Code:
self.setFlags(Qt.ItemFlags(Qt.ItemIsSelectable | Qt.ItemIsUserCheckable | Qt.ItemIsEnabled ))
should be
Code:
self.setFlags(Qt.ItemFlag(Qt.ItemIsSelectable | Qt.ItemIsUserCheckable | Qt.ItemIsEnabled ))
Qt.ItemFlag
s is changed to Qt.ItemFlag
Without the change and assuming you use that widget, you will get the error
Code:
AttributeError: type object 'Qt' has no attribute 'ItemFlags'
EDIT: The change worked on both the beta and 5.41.