mirror of
https://github.com/openmc-dev/openmc.git
synced 2026-07-28 22:26:08 -04:00
Fixed bug in StatePoint.with_summary property
This commit is contained in:
parent
bc3f61606e
commit
bd841a268f
1 changed files with 1 additions and 1 deletions
|
|
@ -451,7 +451,7 @@ class StatePoint(object):
|
|||
|
||||
@property
|
||||
def with_summary(self):
|
||||
return False if self.summary is None else True
|
||||
return False if self.summary is False else True
|
||||
|
||||
@sparse.setter
|
||||
def sparse(self, sparse):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue