files: reorganize imports, remove print lines

This commit is contained in:
2025-09-22 09:42:15 +02:00
parent 7079b4d47f
commit c4be1d8bfa
23 changed files with 127 additions and 110 deletions

View File

@@ -110,7 +110,7 @@ class Ui_Form(object):
self.progressBar.setValue(value)
def thread_quit(self):
print("Terminating thread")
# print("Terminating thread")
self.thread.terminate()
self.thread.quit()
self.thread.deleteLater()
@@ -144,7 +144,7 @@ class Ui_Form(object):
def determine_progress(self, signal):
# check length of listWidget
length = self.listWidget.count()
print(f"Length of listWidget: {length}")
# print(f"Length of listWidget: {length}")
if length == 0:
logger.log_info("AutoAdder finished")
self.buttonBox.accepted.emit()