Skip to content

Commit

Permalink
Fixed Typo
Browse files Browse the repository at this point in the history
lenght -> length
  • Loading branch information
eltociear committed Aug 4, 2024
1 parent cb6ca4d commit 79096a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion stumpy/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -4270,7 +4270,7 @@ def process_isconstant(T, m, T_subseq_isconstant=None, T_subseq_isfinite=None):

if len(T_subseq_isconstant) != T.shape[0]: # pragma: no cover
msg = (
"The lenght of the list `T_subseq_isconstant` must be "
"The length of the list `T_subseq_isconstant` must be "
+ "equal to the number of time series in `T`."
)
raise ValueError(msg)
Expand Down

0 comments on commit 79096a8

Please sign in to comment.