From 161884fbf1b3835a44ef27367dc86d78e049a486 Mon Sep 17 00:00:00 2001 From: Tyler Goodlet Date: Sun, 13 Jul 2025 13:56:37 -0400 Subject: [PATCH] Adjust back `.devx._debug` import Bc this history is pre `.devx.debug` subpkg creation.. --- examples/debugging/restore_builtin_breakpoint.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/debugging/restore_builtin_breakpoint.py b/examples/debugging/restore_builtin_breakpoint.py index 1d045a6b..872dd648 100644 --- a/examples/debugging/restore_builtin_breakpoint.py +++ b/examples/debugging/restore_builtin_breakpoint.py @@ -5,7 +5,7 @@ import trio import tractor # ensure mod-path is correct! -from tractor.devx.debug import ( +from tractor.devx._debug import ( _sync_pause_from_builtin as _sync_pause_from_builtin, )