Skip to content

Commit

Permalink
Tweak docstrings
Browse files Browse the repository at this point in the history
  • Loading branch information
rwest committed Jul 5, 2019
1 parent 6cb193e commit 62d6843
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions pyked/chemked.py
Original file line number Diff line number Diff line change
Expand Up @@ -591,7 +591,9 @@ class DataPoint(object):
Specific types of data point should inherit from this.
"""
def process_quantity(self, properties):
"""Process the uncertainty information from a given quantity and return it
"""
Process the units and uncertainty information from a given quantity
and return it as a units.Quantity object.
"""
quant = Q_(properties[0])
if len(properties) > 1:
Expand Down Expand Up @@ -632,10 +634,10 @@ def process_quantity(self, properties):


class IgnitionDataPoint(DataPoint):
"""Class for a single datapoint.
"""Class for a single ignition delay datapoint.
The `DataPoint` class stores the information associated with a single data point in the dataset
parsed from the `ChemKED` YAML input.
The `IgnitionDataPoint` class stores the information associated with a single ignition data point
in the dataset parsed from the `ChemKED` YAML input.
Arguments:
properties (`dict`): Dictionary adhering to the ChemKED format for ``datapoints``
Expand Down

0 comments on commit 62d6843

Please sign in to comment.