From 4dedf7ad0f6818c2dc1f7e1c65c7519e25ccc10a Mon Sep 17 00:00:00 2001 From: Hannes Braun Date: Tue, 17 Jun 2025 20:32:57 +0200 Subject: [PATCH] Hide methods of objects in visualization --- pytrace-generator/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pytrace-generator/main.py b/pytrace-generator/main.py index 3bff2807..b9a93e57 100644 --- a/pytrace-generator/main.py +++ b/pytrace-generator/main.py @@ -231,7 +231,7 @@ def store(self, address, value): except: # Just ignore it in case getattr fails continue - if should_ignore_on_heap(field, v, self.script_path): + if callable(v) or should_ignore_on_heap(field, v, self.script_path): continue prim_value = PrimitiveValue(v)