skypyproject / skypy

SkyPy: A package for modelling the Universe.
BSD 3-Clause "New" or "Revised" License
117 stars 38 forks source link

BUG: `schechter_smf` is not included in docs #522

Closed philipp128 closed 2 years ago

philipp128 commented 2 years ago

Describe the bug The method schechter_smf defined it skypy.galaxies._schechter is not included in the documentation although the method schechter_lf is included while defined in the same module.

To Reproduce Steps to reproduce the behavior:

  1. Go to the latest docs or from previous versions.
  2. Scroll down to Reference/API -> skypy.galaxies Package -> Functions
  3. See that schechter_smf is missing but schechter_lf is included

Expected behavior I expect that schechter_smf is included and links to its documentation.

Suggestion to resolve Add schechter_smf in the skypy.galaxies.__init__.py file.

__all__ = [ 'schechter_lf', 'schechter_smf', ]