Skip to content

Commit 63a0514

Browse files
missed one
1 parent 2e0d987 commit 63a0514

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tsml/utils/validation.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ def is_clusterer(estimator: BaseEstimator) -> bool:
9797
return getattr(estimator, "_estimator_type", None) == "clusterer"
9898

9999

100-
def _num_features(X: Union[np.ndarray, List[np.ndarray]]) -> tuple[int]:
100+
def _num_features(X: Union[np.ndarray, List[np.ndarray]]) -> Tuple[int]:
101101
"""Return the number of features of a 3D numpy array or a list of 2D numpy arrays.
102102
103103
Returns

0 commit comments

Comments
 (0)