MCPcopy Create free account
hub / github.com/closeio/tasktiger / WorkerContextManagerStack

Class WorkerContextManagerStack

tasktiger/executor.py:49–54  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

47
48
49class WorkerContextManagerStack(ExitStack):
50 def __init__(self, context_managers: List[ContextManager]) -> None:
51 super(WorkerContextManagerStack, self).__init__()
52
53 for mgr in context_managers:
54 self.enter_context(mgr)
55
56
57class Executor:

Callers 1

execute_tasksMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected