Skip to content

Commit

Permalink
Fix code style issues with Black
Browse files Browse the repository at this point in the history
  • Loading branch information
lint-action committed Feb 2, 2024
1 parent 17eea3c commit ad7c573
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions rocketpy/mathutils/function.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,17 +95,17 @@ def __init__(
Notes
-----
(I) CSV files may include an optional single header line. If this
header line is present and contains names for each data column, those
names will be used to label the inputs and outputs unless specified
otherwise by the `inputs` and `outputs` arguments.
(I) CSV files may include an optional single header line. If this
header line is present and contains names for each data column, those
names will be used to label the inputs and outputs unless specified
otherwise by the `inputs` and `outputs` arguments.
If the header is specified for only a few columns, it is ignored.
Commas in a header will be interpreted as a delimiter, which may cause
undesired input or output labeling. To avoid this, specify each input
and output name using the `inputs` and `outputs` arguments.
(II) Fields in CSV files may be enclosed in double quotes. If fields
(II) Fields in CSV files may be enclosed in double quotes. If fields
are not quoted, double quotes should not appear inside them.
"""
if inputs is None:
Expand Down Expand Up @@ -192,17 +192,17 @@ def set_source(self, source):
Notes
-----
(I) CSV files may include an optional single header line. If this
header line is present and contains names for each data column, those
names will be used to label the inputs and outputs unless specified
otherwise. If the header is specified for only a few columns, it is
(I) CSV files may include an optional single header line. If this
header line is present and contains names for each data column, those
names will be used to label the inputs and outputs unless specified
otherwise. If the header is specified for only a few columns, it is
ignored.
Commas in a header will be interpreted as a delimiter, which may cause
undesired input or output labeling. To avoid this, specify each input
and output name using the `inputs` and `outputs` arguments.
(II) Fields in CSV files may be enclosed in double quotes. If fields
(II) Fields in CSV files may be enclosed in double quotes. If fields
are not quoted, double quotes should not appear inside them.
Returns
Expand Down

0 comments on commit ad7c573

Please sign in to comment.