mirror of
https://github.com/openmc-dev/openmc.git
synced 2026-07-28 06:05:58 -04:00
Fix error in property setter for num_flushes
This commit is contained in:
parent
2bc76cbd83
commit
cd67d8f526
1 changed files with 2 additions and 2 deletions
|
|
@ -514,8 +514,8 @@ class CMFDFile(object):
|
|||
self._norm = norm
|
||||
|
||||
|
||||
@snes_monitor.setter
|
||||
def snum_flushes(self, num_flushes):
|
||||
@num_flushes.setter
|
||||
def num_flushes(self, num_flushes):
|
||||
|
||||
if not is_integer(num_flushes):
|
||||
msg = 'Unable to set the CMFD number of flushes to {0} ' \
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue