Pattern wise, does a `GenericDataSet` class factor...
# advanced-need-help
l
Pattern wise, does a
GenericDataSet
class factory make sense? I'm looking to write a class factory with the following signature:
Copy code
python
def create_generic_dataset(
    name: str,
    load: Callable[[Path, ...], pandas.DataFrame],
    save: Callable[[pandas.DataFrame, Path, ...], None]
):
    ...
or is subclassing the
AbstractaDataSet
still the preferred method?