(self, val=True)
| 162 | """used by chief to allow workers to run or not""" |
| 163 | |
| 164 | def __init__(self, val=True): |
| 165 | self.val = mp.Value("b", False) |
| 166 | self.lock = mp.Lock() |
| 167 | |
| 168 | def get(self): |
| 169 | with self.lock: |
nothing calls this directly
no outgoing calls
no test coverage detected