mirror of
https://github.com/openmc-dev/openmc.git
synced 2026-07-27 21:55:41 -04:00
Fixed syntax error
This commit is contained in:
parent
1615e04f9a
commit
dbaa3dc66a
1 changed files with 1 additions and 1 deletions
|
|
@ -561,7 +561,7 @@ class StatePoint(object):
|
|||
|
||||
def _get_long(self, n=1, path=None):
|
||||
if self._hdf5:
|
||||
return [float(v) for v self._f[path].value]
|
||||
return [float(v) for v in self._f[path].value]
|
||||
else:
|
||||
return [float(v) for v in self._get_data(n, 'q', 8)]
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue