Skip to content

Commit

Permalink
Added a number stub.
Browse files Browse the repository at this point in the history
  • Loading branch information
jamescrake-merani committed Dec 20, 2024
1 parent 880f374 commit 568aa12
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions sasdata/trend.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,10 @@ class Trend:
def __getitem__(self, item) -> SasData:
raise NotImplementedError()

@property
def trend_axes(self) -> list[float]:
raise NotImplementedError()

# TODO: Assumes there are at least 2 items in data. Is this reasonable to assume? Should there be error handling for
# situations where this may not be the case?
def all_axis_match(self, axis: str) -> bool:
Expand Down

0 comments on commit 568aa12

Please sign in to comment.