(self)
| 410 | return LogOutput(items=out, start=start, end=end) |
| 411 | |
| 412 | def reset(self): |
| 413 | with self._lock: |
| 414 | self.guid = str(uuid.uuid4()) |
| 415 | self.updates = [] |
| 416 | self.logs = [] |
| 417 | self.set_initial_progress() |
| 418 | |
| 419 | def _mask_recursive(self, obj: T) -> T: |
| 420 | """Recursively mask secrets in nested objects.""" |
no test coverage detected