self.output.clear()
self.output.append("Text that you should see for 2 sec")
time.sleep(2)
self.output.clear()
You are supposed to see the text in a window for 2 seconds then it should clear and continue but the sleep happens before the text shows and it continues to the clear, not showing the text at all. Anyone know who to fix this?