Source code for mosfit.modules.photospheres.photosphere

"""Definitions for the `Photosphere` class."""
from mosfit.modules.module import Module

# Important: Only define one ``Module`` class per file.


[docs]class Photosphere(Module): """Template class for photosphere Modules."""
[docs] def process(self, **kwargs): """Process module.""" return {}