Skip to content

Commit cd9d10c

Browse files
committed
DOC: correct Function docstring section placement.
1 parent 66f6d52 commit cd9d10c

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

rocketpy/mathutils/function.py

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -59,13 +59,6 @@ def __init__(
5959
- Function: Copies the source of the provided Function object,
6060
creating a new Function with adjusted inputs and outputs.
6161

62-
Notes
63-
-----
64-
(I) CSV files can optionally contain a single header line. If present,
65-
the header is ignored during processing.
66-
(II) Fields in CSV files may be enclosed in double quotes. If fields are
67-
not quoted, double quotes should not appear inside them.
68-
6962
inputs : string, sequence of strings, optional
7063
The name of the inputs of the function. Will be used for
7164
representation and graphing (axis names). 'Scalar' is default.
@@ -93,6 +86,13 @@ def __init__(
9386
Returns
9487
-------
9588
None
89+
90+
Notes
91+
-----
92+
(I) CSV files can optionally contain a single header line. If present,
93+
the header is ignored during processing.
94+
(II) Fields in CSV files may be enclosed in double quotes. If fields are
95+
not quoted, double quotes should not appear inside them.
9696
"""
9797
# Set input and output
9898
if inputs is None:

0 commit comments

Comments
 (0)