Skip to content

Commit

Permalink
docs: pdoc as much as possible from the code
Browse files Browse the repository at this point in the history
  • Loading branch information
kerberizer committed Oct 30, 2023
1 parent eb173c4 commit e0cdf6b
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 15 deletions.
9 changes: 8 additions & 1 deletion src/ramanchada2/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,14 @@

from . import spectrum
from . import theoretical_lines
__all__ = ['spectrum', 'theoretical_lines']
__all__ = [
'auxiliary',
'io',
'misc',
'spectral_components',
'spectrum',
'theoretical_lines',
]
__version__ = '0.0.8'


Expand Down
15 changes: 1 addition & 14 deletions src/ramanchada2/spectrum/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,17 +15,4 @@
from .creators.from_spectral_component_collection import from_spectral_component_collection
from .creators.from_delta_lines import from_delta_lines
from .creators.from_test_spe import from_test_spe
from .creators.hdr_from_multi_exposure import hdr_from_multi_exposure


__all__ = ['Spectrum',
'from_cache_or_calc',
'from_chada',
'from_local_file',
'from_simulation',
'from_test_spe',
'from_theoretical_lines',
'from_spectral_component_collection',
'from_delta_lines',
'hdr_from_multi_exposure',
]
from .creators.hdr_from_multi_exposure import hdr_from_multi_exposure

0 comments on commit e0cdf6b

Please sign in to comment.