remove print
This commit is contained in:
parent
3c283ddac9
commit
5b4753476c
@ -53,7 +53,6 @@ class QFileReader(QtCore.QObject):
|
||||
|
||||
status = QtWidgets.QDialog.Accepted
|
||||
for f in fname:
|
||||
print(f)
|
||||
f = Path(f)
|
||||
dtype = self.guess_type(f)
|
||||
if dtype in self.reader:
|
||||
@ -62,9 +61,6 @@ class QFileReader(QtCore.QObject):
|
||||
raise ValueError(f'Unknown type for file {f}')
|
||||
|
||||
try:
|
||||
print(status, QtWidgets.QDialog.DialogCode.Accepted)
|
||||
print(r)
|
||||
print(repr(self.reader['txt'].skip))
|
||||
# If QAsciiReader.skip = True it accepts automatically and returns None
|
||||
if status == QtWidgets.QDialog.DialogCode.Rejected and isinstance(r, QAsciiReader) and self.reader['txt'].skip:
|
||||
break
|
||||
|
Loading…
Reference in New Issue
Block a user