Hello, I'm trying to make a script to list all the components / bodies and their suppress-for-physics status (true or false) in a SpaceClaim model.
But the suppressed body still shows suppressed = false status.
Would somebody be able to point out what's wrong about my script?

# Python Script, API Version = V242
document = DocumentHelper.GetActiveDocument()
for component in document.Parts:
print(component.Name)
for body in component.Bodies:
print(body.Name, body.IsSuppressed)