-
Notifications
You must be signed in to change notification settings - Fork 16
Open
Labels
good first issueGood for newcomersGood for newcomerspythonPython related issues/codePython related issues/code
Description
Prior to dataclasses availability within the python standard library, attrs was used. This may be replaced now to reduce the requirements list.
Autometa/autometa/binning/unclustered_recruitment.py
Lines 76 to 86 in baf61c0
| @attr.s(auto_attribs=True) | |
| class TrainingData: | |
| features: pd.DataFrame = attr.ib(validator=validate_training_data) | |
| target: pd.DataFrame = attr.ib(validator=validate_training_data) | |
| target_names: List[str] | |
| @attr.s(auto_attribs=True) | |
| class Labels: | |
| target: pd.DataFrame | |
| target_names: List[str] |
Lines 99 to 100 in baf61c0
| @attr.s(auto_attribs=True) | |
| class TestData: |
Line 7 in baf61c0
| - attrs # test-data requirement |
This is incorrectly labeled as a test-data requirement (it is, but attr is also used with the autometa-unclustered-recruitment module)
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
good first issueGood for newcomersGood for newcomerspythonPython related issues/codePython related issues/code