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

Class StreamWriter

deeplabcut/gui/widgets.py:178–190  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

176
177
178class StreamWriter:
179 def __init__(self):
180 self.queue = Queue()
181
182 def write(self, text):
183 if text != "\n":
184 self.queue.put(text)
185
186 def flush(self):
187 pass
188
189 def isatty(self):
190 return False
191
192
193class StreamReceiver(QtCore.QThread):

Callers 1

__init__Method · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected