Drop stray `breakpoint()` in `RuntimeVars.__setattr__`

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
trionics_start_or_cancel
Gud Boi 2026-06-17 19:44:34 -04:00
parent 41b5371473
commit f08a7d52b5
1 changed files with 0 additions and 1 deletions

View File

@ -103,7 +103,6 @@ class RuntimeVars(Struct):
key, key,
val, val,
) -> None: ) -> None:
breakpoint()
super().__setattr__(key, val) super().__setattr__(key, val)
def update( def update(