Skip to content

Commit 542ea61

Browse files
committed
Update passage about the paths for opm-common
1 parent 981d715 commit 542ea61

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

python/sphinx_docs/docs/common.rst

+3-5
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,15 @@ OPM Common Python Documentation
44
Note on Import Paths
55
--------------------
66

7-
In this documentation, you may notice that some classes are referenced with their full import paths (e.g., opm.io.deck.DeckItem), while others are shown with just the class name. This distinction reflects how these classes are structured within the package:
7+
In this documentation, some classes are referenced with their full import paths (e.g., opm.io.deck.DeckItem), while others are shown with just the class name. This distinction reflects how these classes are structured within the package:
88

9-
- Fully Qualified Paths: Classes displayed with their full import paths can be directly imported from their respective modules. For example:
9+
- Fully Qualified Class Names: Classes displayed with their full import paths can be imported from their respective modules. They have constructors and can be directly instantiated in Python using the __init__ method. For example:
1010
.. code-block:: python
1111
1212
from opm.io.deck import DeckItem
1313
1414
15-
- Simplified Class Names: Classes displayed with just their names, e.g. Connectoin, are intended for internal use or may require additional context when importing. Refer to the specific module documentation for the correct import path if needed.
16-
17-
This structure allows for a organized and modular package, helping to easily access commonly used classes while maintaining clarity for internal components.
15+
- Unqualified Class Names: Classes displayed with just their names, e.g., Connection, do not have constructors in Python and cannot be directly instantiated in Python. Objects of these classes might be return values of methods of other classes.
1816

1917
Documentation
2018
-------------

0 commit comments

Comments
 (0)