Skip to content

Commit fc1b4d6

Browse files
committed
Fix geom.r_walls with hdf5 output
1 parent b83c88f commit fc1b4d6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

stagpy/_step.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ def r_walls(self):
6969
walls = rgeom[:, 0] + self.rcmb
7070
else:
7171
walls = self._header["e3_coord"] + self.rcmb
72-
walls.append(self._step.rprofs.bounds[1])
72+
walls = np.append(walls, self._step.rprofs.bounds[1])
7373
return self._scale_radius_mo(walls)
7474

7575
@crop

0 commit comments

Comments
 (0)