From c8ac2a93e73777e05c1dc4df5a15890268938511 Mon Sep 17 00:00:00 2001 From: Tyler Goodlet Date: Thu, 13 Feb 2025 11:21:29 -0500 Subject: [PATCH] Delegate to `tractor.msg.pretty_struct` since it was factored from here! --- piker/types.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/piker/types.py b/piker/types.py index 80ccb26a..385f83b0 100644 --- a/piker/types.py +++ b/piker/types.py @@ -21,6 +21,4 @@ Extensions to built-in or (heavily used but 3rd party) friend-lib types. ''' -from tractor.msg.pretty_struct import ( - Struct as Struct, -) +from tractor.msg import Struct as Struct