Source code for yieldplotlib.load.exosims.exosims_spc

"""Node for handling SPC-specific pickle files."""

from yieldplotlib.core.file_nodes import PickleFile


[docs] class SPCFile(PickleFile): """Node for handling SPC-specific pickle files."""
[docs] def _get(self, key: str, **kwargs): """Custom logic for SPC files.""" # TODO: Implement custom logic for SPC files. return super().get(key)