Skip to content

Commit

Permalink
This shouldn't be the self type.
Browse files Browse the repository at this point in the history
  • Loading branch information
jamescrake-merani committed Jan 7, 2025
1 parent 90d85db commit 8c62c80
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 @@ -65,7 +65,7 @@ def all_axis_match(self, axis: str) -> bool:
return True

# TODO: For now, return a new trend, but decide later. Shouldn't be too hard to change.
def interpolate(self, axis: str) -> Self:
def interpolate(self, axis: str) -> "Trend":
new_data: list[SasData] = []
reference_data = self.data[0]
# TODO: I don't like the repetition here. Can probably abstract a function for this ot make it clearer.
Expand Down

0 comments on commit 8c62c80

Please sign in to comment.