From f08a7d52b5fcc043121a2aeb27c14de88025251c Mon Sep 17 00:00:00 2001 From: goodboy Date: Wed, 17 Jun 2026 19:44:34 -0400 Subject: [PATCH] Drop stray `breakpoint()` in `RuntimeVars.__setattr__` MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Left-over debug trap from the `_runtime_vars` pure get/set refactor — it fired on *every* struct-form rt-var write (e.g. via `.update()`), hanging any non-tty / CI / forked actor on `pdb` stdin. Surfaced by a `/code-review high` pass on #462. (this patch was generated in some part by [`claude-code`][claude-code-gh]) [claude-code-gh]: https://github.com/anthropics/claude-code --- tractor/runtime/_state.py | 1 - 1 file changed, 1 deletion(-) diff --git a/tractor/runtime/_state.py b/tractor/runtime/_state.py index 11e0c0fd..17641f99 100644 --- a/tractor/runtime/_state.py +++ b/tractor/runtime/_state.py @@ -103,7 +103,6 @@ class RuntimeVars(Struct): key, val, ) -> None: - breakpoint() super().__setattr__(key, val) def update(