Skip to content

Commit

Permalink
Fix list type annotation
Browse files Browse the repository at this point in the history
  • Loading branch information
stephane-caron committed Nov 1, 2023
1 parent 8bc9f88 commit de007b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion foxplot/series.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def __repr__(self):
values = list(self.__data.values())
return f"Time series with values: {values}"

def _get(self, max_index: int) -> List[float]:
def _get(self, max_index: int) -> List:
"""Get indexed series as a list of values.
Args:
Expand Down

0 comments on commit de007b3

Please sign in to comment.