Update api spec (#145)
* YOYO NEW API SPEC! * updates Signed-off-by: Jess Frazelle <github@jessfraz.com> --------- Signed-off-by: Jess Frazelle <github@jessfraz.com> Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
This commit is contained in:
@ -4,13 +4,13 @@ from enum import Enum
|
||||
class UnitVolume(str, Enum):
|
||||
"""The valid types of volume units.""" # noqa: E501
|
||||
|
||||
"""# Cubic centimetres (cc or cm³) <https://en.wikipedia.org/wiki/Cubic_centimetre> """ # noqa: E501
|
||||
"""# Cubic centimeters (cc or cm³) <https://en.wikipedia.org/wiki/Cubic_centimeter> """ # noqa: E501
|
||||
CM3 = "cm3"
|
||||
"""# Cubic feet (ft³) <https://en.wikipedia.org/wiki/Cubic_foot> """ # noqa: E501
|
||||
FT3 = "ft3"
|
||||
"""# Cubic inches (cu in or in³) <https://en.wikipedia.org/wiki/Cubic_inch> """ # noqa: E501
|
||||
IN3 = "in3"
|
||||
"""# Cubic metres (m³) <https://en.wikipedia.org/wiki/Cubic_metre> """ # noqa: E501
|
||||
"""# Cubic meters (m³) <https://en.wikipedia.org/wiki/Cubic_meter> """ # noqa: E501
|
||||
M3 = "m3"
|
||||
"""# Cubic yards (yd³) <https://en.wikipedia.org/wiki/Cubic_yard> """ # noqa: E501
|
||||
YD3 = "yd3"
|
||||
|
Reference in New Issue
Block a user