Skip to content

Commit

Permalink
added parameters into docs
Browse files Browse the repository at this point in the history
  • Loading branch information
Eleanor Smith committed Oct 19, 2020
1 parent 7a020d4 commit e4f336b
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 21 deletions.
6 changes: 6 additions & 0 deletions docs/api.rst
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,12 @@ Parameters
:undoc-members:
:show-inheritance:

.. automodule:: roocs_utils.parameter.parameterise
:noindex:
:members:
:undoc-members:
:show-inheritance:


Xarray Utils
============
Expand Down
3 changes: 1 addition & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,13 +94,12 @@
#
# html_theme_options = {}

html_logo = "_static/roocs.png"

# Add any paths that contain custom static files (such as style sheets) here,
# relative to this directory. They are copied after the builtin static files,
# so a file named "default.css" will overwrite the builtin "default.css".
html_static_path = ["_build/html/_static"]

html_logo = "_static/roocs.png"

# -- Options for HTMLHelp output ---------------------------------------

Expand Down
5 changes: 0 additions & 5 deletions roocs_utils/parameter/area_parameter.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,6 @@ class AreaParameter(_BaseParameter):
Validates the area input and parses the values into numbers.
Methods
-------
tuple(self): Returns a tuple of the area values (property)
asdict(self): Returns a dictionary of the area values
"""

parse_method = "_parse_sequence"
Expand Down
4 changes: 0 additions & 4 deletions roocs_utils/parameter/collection_parameter.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,6 @@ class CollectionParameter(_BaseParameter):
Validates the input and parses the ids.
Methods
-------
tuple(self): Returns a tuple of the collection ids (property)
"""

parse_method = "_parse_sequence"
Expand Down
5 changes: 0 additions & 5 deletions roocs_utils/parameter/level_parameter.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,6 @@ class LevelParameter(_BaseParameter):
Validates the level input and parses the values into numbers.
Methods
-------
tuple(self): Returns a tuple of the level values (property)
asdict(self): Returns a dictionary of the level values
"""

parse_method = "_parse_range"
Expand Down
5 changes: 0 additions & 5 deletions roocs_utils/parameter/time_parameter.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,6 @@ class TimeParameter(_BaseParameter):
Validates the times input and parses the values into isoformat.
Methods
-------
tuple(self): Returns a tuple of the time values (property)
asdict(self): Returns a dictionary of the time values
"""

parse_method = "_parse_range"
Expand Down

0 comments on commit e4f336b

Please sign in to comment.