1
Fork 0

Fixed missing return in const case

This commit is contained in:
Edgar P. Burkhart 2022-03-04 10:47:23 +01:00
parent 785880e503
commit 071fde81b5
Signed by: edpibu
GPG Key ID: 9833D3C5A25BD227
1 changed files with 1 additions and 0 deletions

View File

@ -27,6 +27,7 @@ class ReadSwash:
self._data[path.stem] = self.read_nohead(path).reshape(
(self._n_t, self._n_x)
)[0, :]
return
self._data[path.stem] = self.read_nohead(path).reshape(
(self._n_t, self._n_x)
)