MCPcopy Index your code
hub / github.com/DeepLabCut/DeepLabCut / StreamReceiver

Class StreamReceiver

deeplabcut/gui/widgets.py:193–203  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

191
192
193class StreamReceiver(QtCore.QThread):
194 new_text = QtCore.Signal(str)
195
196 def __init__(self, queue):
197 super().__init__()
198 self.queue = queue
199
200 def run(self):
201 while True:
202 text = self.queue.get()
203 self.new_text.emit(text)
204
205
206class ClickableLabel(QtWidgets.QLabel):

Callers 1

__init__Method · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected