Skip to content

Commit

Permalink
Fixed call to interpolate function.
Browse files Browse the repository at this point in the history
  • Loading branch information
jamescrake-merani committed Jan 9, 2025
1 parent aaf4d84 commit 23ebf46
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sasdata/trend.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ def interpolate(self, axis: str) -> "Trend":
# TODO: Again, repetition
axis_datum = [content for content in datum._data_contents if content.name == axis][0]
# TODO: There are other options which may need to be filled (or become new params to this method)
mat = calculate_interpolation_matrix_1d(axis_datum, data_axis)
mat, _ = calculate_interpolation_matrix_1d(axis_datum, data_axis)
new_quantities: list[NamedQuantity] = []
for quantity in datum._data_contents:
if quantity.name == axis_datum.name:
Expand Down

0 comments on commit 23ebf46

Please sign in to comment.