MCPcopy Index your code
hub / github.com/pyfa-org/Pyfa / __init__

Method __init__

service/market.py:101–108  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

99class SearchWorkerThread(threading.Thread):
100
101 def __init__(self):
102 threading.Thread.__init__(self)
103 self.name = "SearchWorker"
104 self.jargonLoader = JargonLoader.instance()
105 # load the jargon while in an out-of-thread context, to spot any problems while in the main thread
106 self.jargonLoader.get_jargon()
107 self.jargonLoader.get_jargon().apply('test string'.split())
108 self.running = True
109
110 def run(self):
111 self.cv = threading.Condition()

Callers

nothing calls this directly

Calls 4

instanceMethod · 0.80
get_jargonMethod · 0.80
applyMethod · 0.80
__init__Method · 0.45

Tested by

no test coverage detected