Ejemplo n.º 1
0
 def __init__(self,
              classify: ClassifyExercises = None,
              exercise: str = None):
     QThread.__init__(self)
     self.classify = classify
     self.exercise = exercise
     self.result = None
Ejemplo n.º 2
0
 def __init__(self, email, password, new_password,
              new_password_confirmation):
     QThread.__init__(self)
     self.email = email
     self.password = password
     self.new_password = new_password
     self.new_password_confirmation = new_password_confirmation
Ejemplo n.º 3
0
 def __init__(self, email, password, snapshot_id, computer_id):
     QThread.__init__(self)
     self.email = email
     self.password = password
     self.snapshot_id = snapshot_id
     self.computer_id = computer_id
     self.logger = get_logger()
Ejemplo n.º 4
0
    def __init__(self, force_run=False):
        QThread.__init__(self)
        self.process = None
        self.backup_terminated = False
        self.force_run = force_run
        self.logger = get_logger()

        self.status_updated_at = time.time()
Ejemplo n.º 5
0
    def __init__(self, callback_tag, fetch_marker_callback):
        QThread.__init__(self)

        self.callback_tag = callback_tag
        self.running_flag = True

        self.fetch_marker_callback = fetch_marker_callback
        self.marker_quit_keys = get_emacs_var("eaf-marker-quit-keys") or ""
        self.markers = self.fetch_marker_callback()
Ejemplo n.º 6
0
 def __init__(self, email, password, computer_id, snapshot_id, target,
              snapshot_tree_widget):
     QThread.__init__(self)
     self.email = email
     self.password = password
     self.computer_id = computer_id
     self.snapshot_id = snapshot_id
     self.target = target
     self.snapshot_tree_widget = snapshot_tree_widget
     self.logger = get_logger()
Ejemplo n.º 7
0
 def __init__(self, email, password):
     QThread.__init__(self)
     self.email = email
     self.password = password
Ejemplo n.º 8
0
 def __init__(self, address: str, parent=None) -> None:
     QThread.__init__(self, parent)
     self._address = address
     self._is_running = True
     self._is_uploading = False
Ejemplo n.º 9
0
 def __init__(self, classify: ClassifyExercises = None):
     QThread.__init__(self)
     self.classify = classify
Ejemplo n.º 10
0
 def __init__(self, callback, parent=None):
     QThread.__init__(self, parent)
     self._finished.connect(callback)
Ejemplo n.º 11
0
 def __init__(self):
     QThread.__init__(self)
     self._pause = 0.5  # watch clipboard interval
     self._stopping = False
     self._stop_event = threading.Event()
Ejemplo n.º 12
0
 def __init__(self):
     QThread.__init__(self)
Ejemplo n.º 13
0
 def __init__(self):
     QThread.__init__(self)
     self.alerted = False
Ejemplo n.º 14
0
 def __init__(self):
     QThread.__init__(self)
     self.queue = queue.Queue()
     self.active = True
Ejemplo n.º 15
0
    def __init__(self, callback_tag):
        QThread.__init__(self)

        self.search_string = ""
        self.callback_tag = callback_tag
        self.running_flag = True
Ejemplo n.º 16
0
 def __init__(self, email, password, reauth):
     QThread.__init__(self)
     self.email = email
     self.password = password
     self.reauth = reauth
     self.logger = get_logger()