This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import time | |
from PyQt5.QtCore import QThread | |
class Worker(QThread): | |
def __init__(self): | |
QThread.__init__(self) | |
self.counter = 0 |