Skip to content

Commit

Permalink
del printed text on console
Browse files Browse the repository at this point in the history
  • Loading branch information
rifqiharrys committed Feb 17, 2021
1 parent 7bc93b8 commit 98d8a4d
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions sdb_gui.py
Original file line number Diff line number Diff line change
Expand Up @@ -468,8 +468,7 @@ def loadSampleAction(self):

for i in range(len(data.index)):
for j in range(len(data.columns)):
self.table.setItem(
i, j, QTableWidgetItem(str(data.iloc[i, j])))
self.table.setItem(i, j, QTableWidgetItem(str(data.iloc[i, j])))

self.table.resizeRowsToContents()
self.table.resizeColumnsToContents()
Expand Down Expand Up @@ -1137,7 +1136,6 @@ def sampling(self):
samples_edit['z'] = samples_edit['z'] * -1

if self.limitState == 'unchecked':
print('depth limit')
samples_edit = samples_edit[samples_edit['z'] >= self.limitBValue]
samples_edit = samples_edit[samples_edit['z'] <= self.limitAValue]

Expand Down

0 comments on commit 98d8a4d

Please sign in to comment.