MCPcopy Create free account
hub / github.com/RainingComputers/whipFTP / upload_thread_dnd

Method upload_thread_dnd

whipFTP.py:822–831  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

820 thread_request_queue.put(lambda:self.console_window.enable_close_button())
821
822 def upload_thread_dnd(self):
823 #Create console/terminal window
824 self.create_progress_window()
825 #Set status
826 self.update_status('Uploading file(s)...')
827 #start thread
828 self.thread = threading.Thread(target = self.upload_dnd, args = (self.ftpController, self.dnd_file_list))
829 self.thread.daemon = True
830 self.thread.start()
831 self.process_thread_requests()
832
833 def upload_dnd(self, ftpController, dnd_file_list):
834 #Thread safe progress function

Callers 1

handle_dndMethod · 0.95

Calls 3

update_statusMethod · 0.95

Tested by

no test coverage detected