Fix in Get

This commit is contained in:
MikeTheWatchGuy 2019-08-21 19:45:18 -04:00
parent 5149a2c2a6
commit 5227126ef1
1 changed files with 1 additions and 1 deletions

View File

@ -2703,7 +2703,7 @@ class Table(Element):
def Get(self):
num_rows = self.QT_TableWidget.rowCount()
num_cols = self.QT_TableWidget.columnCount()
table = [[]]
table = []
for row in range(num_rows):
row_list = []
for col in range(num_cols):