Skip to content

Commit 2c9c977

Browse files
committed
MNT remove unused import
1 parent c06e3e3 commit 2c9c977

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

sklearn/utils/metaestimators.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55

66
from abc import ABCMeta, abstractmethod
77
from contextlib import suppress
8-
from typing import Any, List
98

109
import numpy as np
1110

@@ -19,12 +18,12 @@
1918

2019
class _BaseComposition(BaseEstimator, metaclass=ABCMeta):
2120
"""Base class for estimators that are composed of named sub-estimators.
22-
21+
2322
This abstract class provides parameter management functionality for
2423
meta-estimators that contain collections of named estimators. It handles
2524
the complex logic for getting and setting parameters on nested estimators
2625
using the "estimator_name__parameter" syntax.
27-
26+
2827
The class is designed to work with any attribute containing a list of
2928
(name, estimator) tuples.
3029
"""

0 commit comments

Comments
 (0)