(self, *args, **kwargs)
| 32 | |
| 33 | class NormalizationMethod(ABC): |
| 34 | def __init__(self, *args, **kwargs): |
| 35 | pass |
| 36 | |
| 37 | def normalize(self, data: np.ndarray, axis=0, *args, **kwargs): |
| 38 | return data |
nothing calls this directly
no outgoing calls
no test coverage detected