Skip to content

Commit

Permalink
- Updated sphinx doc conf.py
Browse files Browse the repository at this point in the history
- Fixed format error in function doc string
  • Loading branch information
rjplevin committed Nov 13, 2024
1 parent b532c4f commit f425cca
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
# -- Project information -----------------------------------------------------

project = 'OPGEE'
copyright = '2022-2023, The Board of Trustees of the Leland Stanford Junior University'
copyright = '2022-2024, The Board of Trustees of the Leland Stanford Junior University'
author = 'Adam Brandt, Richard Plevin, Wennan Long'

# The short X.Y version.
Expand Down Expand Up @@ -79,4 +79,4 @@
# -- Options for intersphinx extension ---------------------------------------

# Example configuration for intersphinx: refer to the Python standard library.
intersphinx_mapping = {'https://docs.python.org/3/': None}
intersphinx_mapping = {'python' : ('https://docs.python.org/3/', None)}
2 changes: 1 addition & 1 deletion opgee/analysis.py
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ def from_xml(cls, elt, parent=None, field_names=None):
:param elt: (etree.Element) representing a <Analysis> element
:param parent: (opgee.Model) the Model containing the new Analysis
:param field_names: (list[str] or None) field names to restrict to,
:param field_names: (list[str] or None) field names to restrict to,
otherwise all fields declared in the Analysis are used.
:return: (Analysis) instance populated from XML
"""
Expand Down

0 comments on commit f425cca

Please sign in to comment.