Is there a better way of changing a column text alignment? I'm iterating through all the cells in the column:
for r in range(self.rowCount()):
self.item(r, column).setTextAlignment(Qt.AlignmentFlag.AlignCenter)
Isn't there a better (more straightforward) way of doing this?