================
@@ -406,14 +406,25 @@ def terminate(self):
class _LocalProcess(_BaseProcess):
def __init__(self, trace_on):
- self._proc = None
+ self._proc: Popen | None = None
----------------
DrSergei wrote:nit: maybe use `Optional` like in `reverse_process` below https://github.com/llvm/llvm-project/pull/175048 _______________________________________________ lldb-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
