I have been trying to figure this out without any luck. I am populating a table widget, some of the cells will contain numbers and I want to right justify them. Below is a statement for populating the cell.
self.ui.lst_MigPhases.setItem(x, 3, QtWidgets.QTableWidgetItem(str(int(item[3]))))
What is the appropriate statement(s) to right justify the cell? The value being pulled from the database is a float.