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

Class ProcessResult

app/execute.py:8–13  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

6
7@dataclasses.dataclass
8class ProcessResult:
9 return_value: typing.Any = None
10 exception: Exception = None
11
12 def was_successful(self) -> bool:
13 return self.exception is None
14
15
16class ProcessWithResult(multiprocessing.Process):

Callers 1

runMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected