MCPcopy Create free account
hub / github.com/cft0808/edict / ImmediateThread

Class ImmediateThread

tests/test_dashboard_dispatch.py:42–48  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

40 )
41
42 class ImmediateThread:
43 def __init__(self, target=None, daemon=None):
44 self.target = target
45
46 def start(self):
47 if self.target:
48 self.target()
49
50 monkeypatch.setattr(srv.threading, 'Thread', ImmediateThread)
51

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected