Skip to content

Commit

Permalink
increase data size in _save that stays in the header
Browse files Browse the repository at this point in the history
  • Loading branch information
AWehrhahn committed Jun 2, 2021
1 parent f284e15 commit 796023b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pysme/data_structure.py
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ def _save(self):

for name in self._names:
value = self[name]
if isinstance(value, np.ndarray) and value.size > 5:
if isinstance(value, np.ndarray) and value.size > 10:
data[name] = value
else:
header[name] = value
Expand Down

0 comments on commit 796023b

Please sign in to comment.