Coverage for source/agent/strategies/classification_testable.py: 83%
6 statements
« prev ^ index » next coverage.py v7.8.0, created at 2025-06-06 12:00 +0000
« prev ^ index » next coverage.py v7.8.0, created at 2025-06-06 12:00 +0000
1# agent/strategies/classification_testable.py
3# global imports
4import pandas as pd
5from abc import ABC, abstractmethod
7# local imports
9class ClassificationTestable(ABC):
10 """"""
12 @abstractmethod
13 def classify(self, data: pd.DataFrame) -> list[list[float]]:
14 """"""
16 pass