Skip to content

Commit

Permalink
BUG: don't unpack field data
Browse files Browse the repository at this point in the history
  • Loading branch information
andykee committed Dec 1, 2023
1 parent b8ba2c0 commit 657a94d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lentil/wavefront.py
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ def insert(self, out, weight=1):
out : ndarray
Array with wavefront data inserted into it at the appropriate location
"""
for field in lentil.field.reduce(*self.data):
for field in lentil.field.reduce(self.data):
out = lentil.field.insert(field, out, intensity=True, weight=weight)
return out

Expand Down

0 comments on commit 657a94d

Please sign in to comment.