Fix in Get
This commit is contained in:
parent
5149a2c2a6
commit
5227126ef1
|
@ -2703,7 +2703,7 @@ class Table(Element):
|
||||||
def Get(self):
|
def Get(self):
|
||||||
num_rows = self.QT_TableWidget.rowCount()
|
num_rows = self.QT_TableWidget.rowCount()
|
||||||
num_cols = self.QT_TableWidget.columnCount()
|
num_cols = self.QT_TableWidget.columnCount()
|
||||||
table = [[]]
|
table = []
|
||||||
for row in range(num_rows):
|
for row in range(num_rows):
|
||||||
row_list = []
|
row_list = []
|
||||||
for col in range(num_cols):
|
for col in range(num_cols):
|
||||||
|
|
Loading…
Reference in New Issue