Skip to content

Commit

Permalink
fix: XarrayToNumpyProcessor
Browse files Browse the repository at this point in the history
  • Loading branch information
keara-soloway authored Aug 23, 2023
1 parent 4b076a4 commit 509f8f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CHAP/common/processor.py
Original file line number Diff line number Diff line change
Expand Up @@ -695,7 +695,7 @@ def process(self, data):
:rtype: numpy.ndarray
"""

return self.unwrap_pipelinedata(data).data[-1]
return self.unwrap_pipelinedata(data)[-1].data


if __name__ == '__main__':
Expand Down

0 comments on commit 509f8f9

Please sign in to comment.