MCPcopy Create free account
hub / github.com/tiny-pilot/tinypilot / __init__

Method __init__

app/execute.py:26–30  ·  view source on GitHub ↗
(self, *args, **kwargs)

Source from the content-addressed store, hash-verified

24 """
25
26 def __init__(self, *args, **kwargs):
27 super().__init__(*args, **kwargs)
28 # Create the Connection objects used for communication between the
29 # parent and child processes.
30 self.parent_conn, self.child_conn = multiprocessing.Pipe()
31
32 def run(self):
33 """Method to be run in sub-process."""

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected