Skip to content

Commit bebb25b

Browse files
authored
Merge pull request #175 from skogsbaer/hide-methods-from-objects
Hide methods of objects in visualization
2 parents c453733 + 1d42b64 commit bebb25b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pytrace-generator/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@ def store(self, address, value):
231231
except:
232232
# Just ignore it in case getattr fails
233233
continue
234-
if should_ignore_on_heap(field, v, self.script_path):
234+
if callable(v) or should_ignore_on_heap(field, v, self.script_path):
235235
continue
236236

237237
prim_value = PrimitiveValue(v)

0 commit comments

Comments
 (0)