MCPcopy Create free account
hub / github.com/runhey/OnmyojiAutoScript / __init__

Method __init__

module/server/script_process.py:21–27  ·  view source on GitHub ↗
(self, config_name: str)

Source from the content-addressed store, hash-verified

19class ScriptProcess(ScriptWSManager):
20
21 def __init__(self, config_name: str) -> None:
22 super().__init__()
23 self.config_name = config_name # config_name
24 self.log_pipe_out, self.log_pipe_in = multiprocessing.Pipe(False)
25 self.state_queue = multiprocessing.Queue()
26 self.state: ScriptState = ScriptState.INACTIVE
27 self._process = None
28
29
30

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected